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 16c571f commit 1eef8a5Copy full SHA for 1eef8a5
.github/workflows/build-rootfs.yml
@@ -13,12 +13,15 @@ jobs:
13
matrix:
14
arch:
15
- amd64
16
- - arm64
17
- - armhf # TODO Enable when supported
+# - arm64
+# - armhf # TODO Enable when supported
18
steps:
19
- uses: actions/[email protected]
20
with:
21
fetch-depth: 0
22
+ # Relate-to: https://github.com/actions/checkout/pull/2081#2025
23
+ ref: ${{ github.ref }}
24
+
25
- id: describe
26
name: Describe HEAD
27
run: >-
@@ -43,7 +46,7 @@ jobs:
43
46
- name: Upload Release Asset
44
47
id: upload-release-asset
45
48
uses: softprops/action-gh-release@v2
- if: startsWith(github.ref, 'refs/tags/')
49
+ if: startsWith(github.ref, 'refs/tags/') && ${{ secrets.GH_UNIFY_ACCESS_TOKEN != '' }}
50
51
files: build/dist/*
52
# yamllint disable-line rule:line-length
0 commit comments