File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*.*.*'
7+
8+ env :
9+ GH_TOKEN : ${{ github.token }}
10+
11+ jobs :
12+ release :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v5
16+ - uses : dtolnay/rust-toolchain@stable
17+ - run : cargo xtask build --release --target aarch64
18+ - run : cargo xtask build --release --target riscv64
19+ - run : cargo xtask build --release --target x86_64
20+ - run : cargo xtask build --release --target x86_64-fc --features fc
21+ - run : cargo xtask build --release --target x86_64-uefi
22+ - uses : dtolnay/rust-toolchain@nightly
23+ with :
24+ components : rust-src
25+ - run : cargo xtask build --release --target aarch64_be
26+ - run : gh release create ${GITHUB_REF#refs/tags/} --draft --title ${GITHUB_REF#refs/tags/v} target/release/hermit-loader-*
You can’t perform that action at this time.
0 commit comments