diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index bdf5fbad6..c500bc1a8 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -50,6 +50,11 @@ jobs: sha: context.sha }) + - name: Check if canary or not + run: | + echo $CANARY + shell: bash + - name: Create release uses: ncipollo/release-action@v1 with: @@ -61,16 +66,6 @@ jobs: repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }} token: ${{ secrets.RELEASE_TOKEN }} - 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 }} runs-on: ${{ matrix.platform.os }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d14d9b00b..952d64aa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,6 +48,11 @@ jobs: ref: 'refs/tags/${{ steps.version_info.outputs.build_version }}', sha: context.sha }) + + - name: Check if canary or not + run: | + echo $CANARY + shell: bash - name: Create release uses: ncipollo/release-action@v1 @@ -60,14 +65,6 @@ jobs: repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }} token: ${{ secrets.RELEASE_TOKEN }} - 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 }} runs-on: ${{ matrix.platform.os }}