-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.37 KB
/
Copy pathrelease.yml
File metadata and controls
53 lines (44 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build-and-release:
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
name: linux-musl-x86_64
# Mac builds
- os: macos-latest
target: x86_64-apple-darwin
name: macos-x86_64
- os: macos-latest
target: aarch64-apple-darwin
name: macos-aarch64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install musl-tools
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt-get update && sudo apt-get install -y musl-tools
- name: Build binary
run: cargo build --release --target ${{ matrix.target }}
- name: Rename and compress
run: |
mv target/${{ matrix.target }}/release/envseal envseal-${{ matrix.name }}
tar -czvf envseal-${{ matrix.name }}.tar.gz envseal-${{ matrix.name }}
- name: Release
uses: softprops/action-gh-release@v2
with:
files: envseal-${{ matrix.name }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}