This commit is contained in:
GabCoolGuy 2024-11-21 14:58:28 +01:00
parent a7e34045eb
commit fa64ce7510
2 changed files with 19 additions and 8 deletions

View file

@ -25,6 +25,7 @@ env:
RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO: "Ryujinx" RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO: "Ryujinx"
RYUJINX_TARGET_RELEASE_CHANNEL_REPO: "Ryujinx-Canary" RYUJINX_TARGET_RELEASE_CHANNEL_REPO: "Ryujinx-Canary"
RELEASE: 1 RELEASE: 1
CANARY: 1
jobs: jobs:
tag: tag:
@ -59,10 +60,16 @@ jobs:
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }} owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }} repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
token: ${{ secrets.RELEASE_TOKEN }} token: ${{ secrets.RELEASE_TOKEN }}
canary: 1
run: | canary:
echo $CANARY name: Check if canary or not
shell: bash runs-on: ubuntu-20.04
steps:
- name: Check if canary or not
id: is_canary
run: |
echo $CANARY
shell: bash
release: release:
name: Release for ${{ matrix.platform.name }} name: Release for ${{ matrix.platform.name }}

View file

@ -59,10 +59,14 @@ jobs:
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }} owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }} repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
token: ${{ secrets.RELEASE_TOKEN }} token: ${{ secrets.RELEASE_TOKEN }}
canary: 0
run: | canary:
echo $CANARY name: Check if canary or not
shell: bash runs-on: ubuntu-20.04
steps:
run: |
echo $CANARY
shell: bash
release: release:
name: Release for ${{ matrix.platform.name }} name: Release for ${{ matrix.platform.name }}