-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (104 loc) · 3.69 KB
/
build_then_release.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Build then release
on:
push:
tags:
- "v*"
branches:
- "master"
env:
CARGO_TERM_COLOR: always
jobs:
gen_version:
name: Generate version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.generated-tag.outputs.tag }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get latest tag
id: get-latest-tag
run: |
echo "tag=`gh release list -L 1 | cut -f 1`" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump version
id: generated-tag
uses: actions/github-script@v6
with:
script: |
if (context.ref.startsWith("refs/tags/")) {
let tag = context.ref.replace("refs/tags/", "");
core.setOutput('tag', tag);
console.log(`This event pushed a tag ${tag}, return directly.`)
return
}
console.log('Use default tag "prerelease".')
core.setOutput('tag', 'prerelease');
build:
needs: gen_version
name: Build
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- { target: x86_64-apple-darwin, runner: macos-latest }
- { target: aarch64-apple-darwin, runner: macos-latest }
- { target: x86_64-unknown-linux-musl, runner: ubuntu-latest }
- { target: aarch64-unknown-linux-musl, runner: ubuntu-latest }
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: Setup rust toolchain
run: rustup show
- uses: Swatinem/rust-cache@v2
with:
shared-key: build-then-release-${{ matrix.target }}-v1
- name: Build
run: |
cargo build --release --target ${{ matrix.target }}
zip -j pproxy-${{ needs.gen_version.outputs.version }}-${{ matrix.target }}.zip ./target/${{ matrix.target }}/release/pproxy
- uses: actions/upload-artifact@v4
name: Upload artifacts
with:
name: pproxy-${{ needs.gen_version.outputs.version }}-${{ matrix.target }}
path: pproxy-${{ needs.gen_version.outputs.version }}-${{ matrix.target }}.zip
retention-days: 1
release:
needs: [gen_version, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate changelog
uses: orhun/git-cliff-action@v3
id: git-cliff
with:
config: cliff.toml
args: "-vv --strip header ${{ needs.gen_version.outputs.version == 'prerelease' && '--unreleased' || '--latest' }}"
- uses: actions/download-artifact@v3
- name: Display fetched artifacts
run: ls -R
- uses: softprops/[email protected]
name: Emit a Github Release
with:
token: "${{ secrets.GITHUB_TOKEN }}"
body: "${{ steps.git-cliff.outputs.content }}"
tag_name: ${{ needs.gen_version.outputs.version }}
prerelease: ${{ needs.gen_version.outputs.version == 'prerelease' }}
title: ${{ needs.gen_version.outputs.version }}
files: |
LICENSE
pproxy-${{ needs.gen_version.outputs.version }}-x86_64-apple-darwin/*.zip
pproxy-${{ needs.gen_version.outputs.version }}-aarch64-apple-darwin/*.zip
pproxy-${{ needs.gen_version.outputs.version }}-x86_64-unknown-linux-musl/*.zip
pproxy-${{ needs.gen_version.outputs.version }}-aarch64-unknown-linux-musl/*.zip