Skip to content

Commit

Permalink
Fix publish step (#304)
Browse files Browse the repository at this point in the history
* Fix publish step

* Remove typo
  • Loading branch information
vigoo authored Mar 22, 2024
1 parent 33345ca commit d5e71b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ jobs:
- platform: linux/amd64
name: linux/amd64
target: x86_64-unknown-linux-gnu
build-config: ""
- platform: linux/arm64
name: linux/arm64
target: aarch64-unknown-linux-gnu
build-config: '--config "target.aarch64-unknown-linux-gnu.linker = ''aarch64-linux-gnu-gcc''"'
name: docker-targets-build (${{ matrix.platform.platform }})
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ dependencies = ["publish-golem-client", "publish-golem-cli"]
[tasks.set-golem-client-version]
description = "Sets the version in golem-client/Cargo.toml to the value of the VERSION environment variable"
command = "sed"
args = ["-i", "s/0\\.0\\.0/$VERSION/g", "golem-client/Cargo.toml"]
args = ["-i", "s/0\\.0\\.0/${VERSION}/g", "golem-client/Cargo.toml"]

[tasks.publish-golem-client]
description = "Publishes golem-client package to crates.io"
Expand All @@ -232,7 +232,7 @@ args = ["publish", "-p", "golem-client", "--all-features", "--allow-dirty"]
[tasks.set-golem-cli-version]
description = "Sets the version in golem-cli/Cargo.toml to the value of the VERSION environment variable"
command = "sed"
args = ["-i", "s/0\\.0\\.0/$VERSION/g", "golem-cli/Cargo.toml"]
args = ["-i", "s/0\\.0\\.0/${VERSION}/g", "golem-cli/Cargo.toml"]

[tasks.publish-golem-cli]
description = "Publishes golem-cli package to crates.io"
Expand Down

0 comments on commit d5e71b1

Please sign in to comment.