We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2daf7af commit 9e3e5ddCopy full SHA for 9e3e5dd
2 files changed
.cargo/config.toml
@@ -0,0 +1,2 @@
1
+[build]
2
+rustflags = ["-C", "target-feature=+crt-static"]
.github/workflows/release.yml
@@ -43,7 +43,7 @@ jobs:
43
cargo login ${{ secrets.CRATES_IO_TOKEN }}
44
sed 's/version = "0.0.0"/version = "'${{ needs.version.outputs.version }}'"/g' Cargo.toml > Cargo.toml.tmp
45
mv Cargo.toml.tmp Cargo.toml
46
- cargo publish --allow-dirty
+ cargo publish --target=x86_64-unknown-linux-gnu --allow-dirty
47
48
deb:
49
name: "deb"
@@ -64,7 +64,7 @@ jobs:
64
run: |
65
66
67
- cargo deb
+ cargo deb --target=x86_64-unknown-linux-gnu
68
- name: Upload Release Asset
69
id: upload-release-asset
70
uses: actions/upload-release-asset@v1
0 commit comments