File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ permissions :
4+ contents : write
5+
6+ on :
7+ push :
8+ tags :
9+ - v[0-9]+.*
10+
11+ jobs :
12+ create-release :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : taiki-e/create-gh-release-action@v1
17+ with :
18+ token : ${{ secrets.GITHUB_TOKEN }}
19+
20+ upload-assets :
21+ needs : create-release
22+ strategy :
23+ matrix :
24+ include :
25+ - target : aarch64-unknown-linux-gnu
26+ os : ubuntu-latest
27+ - target : aarch64-unknown-linux-musl
28+ os : ubuntu-latest
29+ - target : aarch64-apple-darwin
30+ os : macos-latest
31+ - target : x86_64-unknown-linux-gnu
32+ os : ubuntu-latest
33+ - target : x86_64-unknown-linux-musl
34+ os : ubuntu-latest
35+ - target : x86_64-apple-darwin
36+ os : macos-latest
37+ - target : universal-apple-darwin
38+ os : macos-latest
39+ runs-on : ${{ matrix.os }}
40+ steps :
41+ - uses : actions/checkout@v4
42+ - uses : taiki-e/install-action@v2
43+ with :
44+ tool : cross
45+ - uses : taiki-e/upload-rust-binary-action@v1
46+ with :
47+ bin : mjml-converter
48+ target : ${{ matrix.target }}
49+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ /target
You can’t perform that action at this time.
0 commit comments