mirror of
https://github.com/EnderIce2/rpc-bridge.git
synced 2025-07-10 06:49:14 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
12cee9b7c0
|
|||
334ddc73c1
|
21
.github/workflows/build.yml
vendored
21
.github/workflows/build.yml
vendored
@ -7,12 +7,14 @@ on:
|
||||
- '.github/**'
|
||||
- '.vscode/**'
|
||||
- 'docs/**'
|
||||
- mkdocs.yml
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
paths-ignore:
|
||||
- '.github/**'
|
||||
- '.vscode/**'
|
||||
- 'docs/**'
|
||||
- mkdocs.yml
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@ -31,3 +33,22 @@ jobs:
|
||||
with:
|
||||
name: bridge
|
||||
path: build
|
||||
|
||||
nightly:
|
||||
name: Upload Nightly Build to GitHub Releases
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Download All Builds
|
||||
uses: actions/download-artifact@v4
|
||||
|
||||
- name: Update Nightly
|
||||
run: gh release upload nightly bridge/* -R ${{github.repository}} --clobber
|
||||
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
3
.github/workflows/docs.yml
vendored
3
.github/workflows/docs.yml
vendored
@ -5,10 +5,12 @@ on:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- docs/**
|
||||
- mkdocs.yml
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- docs/**
|
||||
- mkdocs.yml
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@ -35,4 +37,3 @@ jobs:
|
||||
- run: pip install mkdocs-material
|
||||
- run: pip install mkdocs-video
|
||||
- run: mkdocs gh-deploy --force
|
||||
working-directory: ./docs
|
||||
|
@ -9,7 +9,7 @@ Simple bridge that allows you to use Discord Rich Presence with Wine games/softw
|
||||
|
||||
[Download latest release](https://github.com/EnderIce2/rpc-bridge/releases/latest/download/bridge.zip "Recommended"){ .md-button .md-button--primary }
|
||||
[Download latest pre-release](https://github.com/EnderIce2/rpc-bridge/releases "Unstable builds with experimental features"){ .md-button }
|
||||
[Download latest build](https://github.com/EnderIce2/rpc-bridge/actions/workflows/build.yml "Builds from the latest commits, here be dragons!"){ .md-button }
|
||||
[Download latest build](https://github.com/EnderIce2/rpc-bridge/releases/tag/nightly "Builds from the latest commits, here be dragons!"){ .md-button }
|
||||
|
||||
Works by running a small program in the background that creates a [named pipe](https://learn.microsoft.com/en-us/windows/win32/ipc/named-pipes) `\\.\pipe\discord-ipc-0` inside the prefix and forwards all data to the pipe `/run/user/1000/discord-ipc-0`.
|
||||
|
||||
|
Reference in New Issue
Block a user