Skip to content

Commit

Permalink
Fix a small bug in version setting script (#412)
Browse files Browse the repository at this point in the history
* Fix a small bug in version setting script

* Deploy order
  • Loading branch information
wjthieme authored Oct 28, 2024
1 parent adcc786 commit 649b6ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
.version = $version
' ${{ inputs.manifest-file }} > tmp.json && mv tmp.json ${{ inputs.manifest-file }}
jq --arg version "${{ steps.version.outputs.VERSION }}" '
.dependencies |= with_entries(if .value == "*" then .value = $version else . end)
.dependencies |= (with_entries(if .value == "*" then .value = $version else . end) // .)
' ${{ inputs.manifest-file }} > tmp.json && mv tmp.json ${{ inputs.manifest-file }}
shell: bash
- name: Update Cargo Packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
npm:
strategy:
matrix:
package: [client, core, whirlpool]
package: [core, client, whirlpool]
max-parallel: 1
fail-fast: true
runs-on: ubuntu-latest
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
cargo:
strategy:
matrix:
package: [client, core]
package: [macros, core, client]
max-parallel: 1
fail-fast: true
runs-on: ubuntu-latest
Expand Down

0 comments on commit 649b6ee

Please sign in to comment.