We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429522c commit fcdf77cCopy full SHA for fcdf77c
.github/workflows/release-binary.yml
@@ -27,6 +27,18 @@ jobs:
27
- name: Checkout code
28
uses: actions/checkout@v5
29
30
+ - name: Debugging
31
+ if: ${{ github.repository }}
32
+ run: |
33
+ echo ${{github.repository}}
34
+ echo ${{github.ref}}
35
+ echo $GITHUB_REF
36
+ echo ${{ github.repository == 'lycheeverse/lychee' }}
37
+ echo ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' }}
38
+ echo ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
39
+ echo ${{ github.repository == 'lycheeverse/lychee' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
40
+ exit 1
41
+
42
- name: Get release
43
id: get_release
44
uses: bruceadams/[email protected]
0 commit comments