ci: debug publish-canary job

This commit is contained in:
Elliot DeNolf
2024-11-11 11:21:16 -05:00
parent 26691377d2
commit 8a20231d40

View File

@@ -525,6 +525,7 @@ jobs:
publish-canary: publish-canary:
name: Publish Canary name: Publish Canary
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ needs.all-green.result == 'success' && github.ref_name == 'beta' }}
needs: needs:
- all-green - all-green
@@ -533,4 +534,3 @@ jobs:
- run: | - run: |
echo github.ref: ${{ github.ref }} echo github.ref: ${{ github.ref }}
echo isBeta: ${{ github.ref == 'refs/heads/beta' }} echo isBeta: ${{ github.ref == 'refs/heads/beta' }}
echo isMain: ${{ github.ref == 'refs/heads/main' }}