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 5dd4caa commit 577779aCopy full SHA for 577779a
.github/workflows/flatpak.yml
@@ -50,15 +50,15 @@ jobs:
50
# lazy.
51
52
- name: Nightly build
53
- if: !startsWith(github.ref, 'refs/tags/')
+ if: ${{ !startsWith(github.ref, 'refs/tags/') }}
54
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
55
with:
56
bundle: SuperTuxNightly.flatpak
57
manifest-path: org.supertux.SuperTuxNightly.yml
58
cache-key: flatpak-builder-nightly-${{ github.sha }}
59
60
- name: Release build
61
- if: startsWith(github.ref, 'refs/tags/')
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
62
63
64
bundle: SuperTux.flatpak
0 commit comments