mirror of
https://github.com/imjasonh/krust
synced 2026-07-18 06:56:13 +00:00
next attempt at release
Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
parent
427ec00fe5
commit
1c84596a6b
2 changed files with 12 additions and 1 deletions
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
|
|
@ -40,6 +40,17 @@ jobs:
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Setup cargo config for cross-compilation
|
||||||
|
run: |
|
||||||
|
mkdir -p .cargo
|
||||||
|
cat > .cargo/config.toml << 'EOF'
|
||||||
|
[target.x86_64-unknown-linux-musl]
|
||||||
|
linker = "musl-gcc"
|
||||||
|
|
||||||
|
[target.aarch64-unknown-linux-musl]
|
||||||
|
linker = "aarch64-linux-gnu-gcc"
|
||||||
|
EOF
|
||||||
|
|
||||||
- run: cargo test --verbose
|
- run: cargo test --verbose
|
||||||
|
|
||||||
- uses: rust-lang/crates-io-auth-action@041cce5b4b821e6b0ebc9c9c38b58cac4e34dcc2 # v1.0.2
|
- uses: rust-lang/crates-io-auth-action@041cce5b4b821e6b0ebc9c9c38b58cac4e34dcc2 # v1.0.2
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "krust"
|
name = "krust"
|
||||||
version = "0.0.1"
|
version = "0.0.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Jason Hall <imjasonh@gmail.com>"]
|
authors = ["Jason Hall <imjasonh@gmail.com>"]
|
||||||
description = "A container image build tool for Rust applications"
|
description = "A container image build tool for Rust applications"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue