Skip to content

Commit

Permalink
Merge pull request #323 from jmt-lab/develop
Browse files Browse the repository at this point in the history
fix release workflow due to serde bug
  • Loading branch information
jmt-lab committed Jul 11, 2024
2 parents 7504575 + 2142213 commit f0ea43b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ permissions:
on:
push:
tags:
- '*-?v[0-9]+*'
- "*-?v[0-9]+*"

jobs:
# Create the Github Release™ so the packages have something to be uploaded to
Expand All @@ -60,7 +60,7 @@ jobs:
submodules: recursive
- name: Install cargo-dist
run: |
cargo install \
cargo install --locked \
--git "https://github.com/webern/cargo-dist" \
--rev "3dcbe823db0c4068f38db790d996a4af54e68b3e"
- id: create-release
Expand Down Expand Up @@ -97,12 +97,12 @@ jobs:
include:
- dist-args: "--artifacts=local --target=x86_64-unknown-linux-musl"
install-dist: |
cargo install \
cargo install --locked \
--git "https://github.com/webern/cargo-dist" \
--rev "3dcbe823db0c4068f38db790d996a4af54e68b3e"
- dist-args: "--artifacts=local --target=aarch64-unknown-linux-musl"
install-dist: |
cargo install \
install-dist: |
cargo install --locked \
--git "https://github.com/webern/cargo-dist" \
--rev "3dcbe823db0c4068f38db790d996a4af54e68b3e"
runs-on:
Expand Down

0 comments on commit f0ea43b

Please sign in to comment.