Skip to content

Commit

Permalink
aaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
GabCoolDude committed Nov 21, 2024
1 parent a7e3404 commit fa64ce7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ env:
RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO: "Ryujinx"
RYUJINX_TARGET_RELEASE_CHANNEL_REPO: "Ryujinx-Canary"
RELEASE: 1
CANARY: 1

jobs:
tag:
Expand Down Expand Up @@ -59,10 +60,16 @@ jobs:
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
token: ${{ secrets.RELEASE_TOKEN }}
canary: 1
run: |
echo $CANARY
shell: bash

canary:
name: Check if canary or not
runs-on: ubuntu-20.04
steps:
- name: Check if canary or not
id: is_canary
run: |
echo $CANARY
shell: bash

release:
name: Release for ${{ matrix.platform.name }}
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,14 @@ jobs:
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
token: ${{ secrets.RELEASE_TOKEN }}
canary: 0
run: |
echo $CANARY
shell: bash

canary:
name: Check if canary or not
runs-on: ubuntu-20.04
steps:
run: |
echo $CANARY
shell: bash

release:
name: Release for ${{ matrix.platform.name }}
Expand Down

0 comments on commit fa64ce7

Please sign in to comment.