diff --git a/Makefile.toml b/Makefile.toml index cd34f19..24e8210 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -5,6 +5,7 @@ script = ''' sha=$(git rev-parse --short HEAD) tag=$(git describe --tags --abbrev=0 --match 'v*' | sed 's/^v//') sed -i '0,/version/{s/version = ".*"/version = "'$tag+$sha'"/}' Cargo.toml + sed -i '0,/version/{s/version = ".*"/version = "'$tag+$sha'"/}' gravel/Cargo.toml ''' [tasks.artifact-dropoff] @@ -28,7 +29,7 @@ args = ["arch"] [tasks.arch] dependencies = ["build-arch"] -script = "mv gravel/*.pkg.tar.zst target/artifacts/gravel-x86_64.pkg.tar.zst" +script = "mv gravel/gravel-0*.pkg.tar.zst target/artifacts/gravel-x86_64.pkg.tar.zst" [tasks.build-exe] command = "cargo" diff --git a/gravel/Cargo.toml b/gravel/Cargo.toml index ad3dba3..c0c3135 100644 --- a/gravel/Cargo.toml +++ b/gravel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gravel" -version.workspace = true +version = "0.0.0-dev" # patched by CI (hack) edition.workspace = true description = "cross-platform run launcher" readme = "../README.md"