Skip to content

Commit

Permalink
fix: github action
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jan 11, 2025
1 parent 3d4da60 commit 0af7fba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,13 @@ jobs:
runs-on: ubuntu-latest
needs: [android, zig, linux, darwin]
steps:
- if: github.event.inputs.goneonize
- if: ${{ github.event.inputs.goneonize }}
name: Download Artifact
uses: actions/download-artifact@v4
with:
merge-multiple: true
path: sharedlib
- if: github.event.inputs.goneonize
- if: ${{ github.event.inputs.goneonize }}
name: Upload shared library to draft release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -276,7 +276,7 @@ jobs:
run: |
uv sync --dev
uv run task version neonize --set-version ${{ github.event.inputs.version }}
- if: github.event.inputs.goneonize
- if: ${{ github.event.inputs.goneonize }}
name: set target goneonize to ${{ github.event.inputs.version }}
run: uv run task version goneonize --set-version ${{ github.event.inputs.version }}
- if: ${{ !github.event.inputs.goneonize }}
Expand Down

0 comments on commit 0af7fba

Please sign in to comment.