@@ -110,7 +110,7 @@ jobs:
110110 path : ${{ env.FLATPAK_BUILD_DIR }}
111111
112112 - name : Commit screenshots
113- if : !inputs.publish-mode
113+ if : ${{ !inputs.publish-mode }}
114114 run : |
115115 : Commit screenshots
116116 ostree commit \
@@ -120,15 +120,15 @@ jobs:
120120 ${{ env.FLATPAK_BUILD_SHARE_PATH }}/app-info/media
121121
122122 - name : Validate repository
123- if : !inputs.publish-mode
123+ if : ${{ !inputs.publish-mode }}
124124 uses : ./.github/actions/flatpak-builder-lint
125125 with :
126126 artifact : repo
127127 path : repo
128128
129129 - name : Generate bundle
130130 id : bundle
131- if : !inputs.publish-mode && inputs.upload-bundle
131+ if : ${{ !inputs.publish-mode && inputs.upload-bundle }}
132132 env :
133133 COMMIT : ${{ steps.checkout.outputs.commit }}
134134 run : |
@@ -146,14 +146,14 @@ jobs:
146146 repo ${file_name} com.obsproject.Studio
147147
148148 - name : Upload bundle
149- if : steps.bundle.conclusion == 'success'
149+ if : ${{ steps.bundle.conclusion == 'success' }}
150150 uses : actions/upload-artifact@v4
151151 with :
152152 name : ${{ steps.bundle.outputs.name }}
153153 path : ${{ github.workspace }}/${{ steps.bundle.outputs.file-name }}
154154
155155 - uses : actions/cache/save@v4
156- if : !inputs.publish-mode && inputs.save-cache && steps.restore-cache.outputs.cache-hit != 'true'
156+ if : ${{ !inputs.publish-mode && inputs.save-cache && steps.restore-cache.outputs.cache-hit != 'true' }}
157157 with :
158158 path : ${{ env.CACHE_PATH }}
159159 key : ${{ env.CACHE_KEY }}
0 commit comments