Skip to content

Commit 9490678

Browse files
committed
fix(ci): Release on tag push
For some reason the step was skip, I believe a gh update caused that regression Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
1 parent 29f7cea commit 9490678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-rootfs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
env:
5353
token-defined: ${{ secrets.GH_UNIFY_ACCESS_TOKEN != '' }}
5454
# yamllint disable-line rule:line-length
55-
if: ${{ env.token-defined == true && startsWith(github.ref, 'refs/tags/') }}
55+
if: github.ref_type == 'tag' && env.token-defined
5656
# yamllint disable-line rule:line-length
5757
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2.2
5858
with:

0 commit comments

Comments
 (0)