-
Notifications
You must be signed in to change notification settings - Fork 24
76 lines (71 loc) · 2.32 KB
/
publish.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: "publish"
on:
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
# branches: [ main ]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
CARGO_TERM_COLOR: always
jobs:
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: build-web
run: make build-web
- name: Install target
run: |
rustup update
rustup target add aarch64-apple-darwin
rustup target add x86_64-apple-darwin
- name: release
run: |
cargo build --release --target=aarch64-apple-darwin
mv target/aarch64-apple-darwin/release/pingap ./pingap-darwin-aarch64
./.github/workflows/upload_asset.sh ./pingap-darwin-aarch64 $GITHUB_TOKEN
cargo build --release --target=x86_64-apple-darwin
mv target/x86_64-apple-darwin/release/pingap ./pingap-darwin-x86
./.github/workflows/upload_asset.sh ./pingap-darwin-x86 $GITHUB_TOKEN
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
- name: build-web
run: make build-web
- name: release
uses: addnab/docker-run-action@v3
with:
image: messense/rust-musl-cross:x86_64-musl
options: -v ${{ github.workspace }}:/home/rust/src
run: |
make release
mv target/x86_64-unknown-linux-musl/release/pingap ./pingap-linux-x86
- name: Upload Assets
run: |
./.github/workflows/upload_asset.sh ./pingap-linux-x86 $GITHUB_TOKEN
linux-aarch64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
- name: build-web
run: make build-web
- name: release
uses: addnab/docker-run-action@v3
with:
image: messense/rust-musl-cross:aarch64-musl
options: -v ${{ github.workspace }}:/home/rust/src
run: |
make release
mv target/aarch64-unknown-linux-musl/release/pingap ./pingap-linux-aarch64
- name: Upload Assets
run: |
./.github/workflows/upload_asset.sh ./pingap-linux-aarch64 $GITHUB_TOKEN