Skip to content

Commit 0af7fba

Browse files
committed
fix: github action
1 parent 3d4da60 commit 0af7fba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,13 @@ jobs:
249249
runs-on: ubuntu-latest
250250
needs: [android, zig, linux, darwin]
251251
steps:
252-
- if: github.event.inputs.goneonize
252+
- if: ${{ github.event.inputs.goneonize }}
253253
name: Download Artifact
254254
uses: actions/download-artifact@v4
255255
with:
256256
merge-multiple: true
257257
path: sharedlib
258-
- if: github.event.inputs.goneonize
258+
- if: ${{ github.event.inputs.goneonize }}
259259
name: Upload shared library to draft release
260260
uses: softprops/action-gh-release@v1
261261
with:
@@ -276,7 +276,7 @@ jobs:
276276
run: |
277277
uv sync --dev
278278
uv run task version neonize --set-version ${{ github.event.inputs.version }}
279-
- if: github.event.inputs.goneonize
279+
- if: ${{ github.event.inputs.goneonize }}
280280
name: set target goneonize to ${{ github.event.inputs.version }}
281281
run: uv run task version goneonize --set-version ${{ github.event.inputs.version }}
282282
- if: ${{ !github.event.inputs.goneonize }}

0 commit comments

Comments
 (0)