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 1eef8a5 commit ff98c09Copy full SHA for ff98c09
.github/workflows/build-rootfs.yml
@@ -46,7 +46,9 @@ jobs:
46
- name: Upload Release Asset
47
id: upload-release-asset
48
uses: softprops/action-gh-release@v2
49
- if: startsWith(github.ref, 'refs/tags/') && ${{ secrets.GH_UNIFY_ACCESS_TOKEN != '' }}
+ env:
50
+ token-defined: ${{ secrets.GH_UNIFY_ACCESS_TOKEN != '' }}
51
+ if: startsWith(github.ref, 'refs/tags/') && ${{ env.token-defined }}
52
with:
53
files: build/dist/*
54
# yamllint disable-line rule:line-length
0 commit comments