Add more mentions of canary #258

Merged
GabCoolDude merged 34 commits from canarymention into master 2024-11-21 18:34:53 +00:00
2 changed files with 19 additions and 8 deletions
Showing only changes of commit fa64ce7510 - Show all commits

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 }}