Skip to content

Commit e25e3ad

Browse files
authored
Create build.yml
1 parent f08c987 commit e25e3ad

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

.github/workflows/build.yml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name: Release Build
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
release:
7+
name: Release - ${{ matrix.release_for }}
8+
permissions:
9+
contents: write
10+
strategy:
11+
matrix:
12+
include:
13+
- release_for: Linux-x86_64
14+
os: ubuntu-latest
15+
target: x86_64-unknown-linux-gnu
16+
bin: dec2bin
17+
name: dec2bin-Linux-x86_64.tar.gz
18+
command: build
19+
- release_for: Linux-aarch64
20+
os: ubuntu-latest
21+
target: aarch64-unknown-linux-gnu
22+
bin: dec2bin
23+
name: dec2bin-Linux-aarch64.tar.gz
24+
command: build
25+
- release_for: Windows-x86_64
26+
os: windows-latest
27+
target: x86_64-pc-windows-msvc
28+
bin: dec2bin.exe
29+
name: dec2bin-Windows-x86_64.zip
30+
command: build
31+
- release_for: macOS-x86_64
32+
os: macOS-latest
33+
target: x86_64-apple-darwin
34+
bin: dec2bin
35+
name: dec2bin-macOS-x86_64.tar.gz
36+
command: build
37+
- release_for: macOS-aarch64
38+
os: macOS-latest
39+
target: aarch64-apple-darwin
40+
bin: dec2bin
41+
name: dec2bin-macOS-aarch64.tar.gz
42+
command: build
43+
runs-on: ${{ matrix.os }}
44+
env:
45+
GH_TOKEN: ${{ github.token }}
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v4
49+
with:
50+
submodules: 'true'
51+
- name: Build binary
52+
uses: houseabsolute/actions-rust-cross@v0
53+
with:
54+
command: ${{ matrix.command }}
55+
target: ${{ matrix.target }}
56+
args: "--locked --release"
57+
- name: Package as archive
58+
shell: bash
59+
run: |
60+
cd ./target/${{ matrix.target }}/release
61+
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
62+
7z a ${{ matrix.name }} ${{ matrix.bin }}
63+
else
64+
tar czvf ${{ matrix.name }} ${{ matrix.bin }}
65+
fi
66+
cd -
67+
- name: Generate SHA-256 checksum file
68+
run: |
69+
cd ./target/${{ matrix.target }}/release
70+
shasum -a 256 ${{ matrix.name }} > ${{ matrix.name }}.sha256
71+
cd -
72+
- name: Upload assets to release
73+
shell: bash
74+
run: |
75+
gh release upload ${{github.event.release.tag_name}} \
76+
./target/${{ matrix.target }}/release/${{ matrix.name }} \
77+
./target/${{ matrix.target }}/release/${{ matrix.name }}.sha256

0 commit comments

Comments
 (0)