1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-06 22:12:32 +00:00

Merge pull request #57 from imjasonh/next2

next attempt at release
This commit is contained in:
Jason Hall 2025-10-15 19:07:45 -04:00 committed by GitHub
commit 84081167b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -18,6 +18,12 @@ jobs:
- uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921 # master
with:
toolchain: stable
targets: x86_64-unknown-linux-musl,aarch64-unknown-linux-musl
- name: Install cross-compilation tools for both architectures
run: |
sudo apt-get update
sudo apt-get install -y musl-tools gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu
- name: Cache cargo registry
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4

View file

@ -1,6 +1,6 @@
[package]
name = "krust"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
authors = ["Jason Hall <imjasonh@gmail.com>"]
description = "A container image build tool for Rust applications"