-
-
Notifications
You must be signed in to change notification settings - Fork 64
82 lines (69 loc) · 2.72 KB
/
cd.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
name: CD
on:
push:
tags:
- "v*.*.*"
jobs:
publish-github:
name: Publish on GitHub
runs-on: ubuntu-22.04
strategy:
matrix:
TARGET: [x86_64-unknown-linux-gnu]
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set the release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.TARGET }}
- name: Build
run: cargo build --release --locked --target ${{ matrix.TARGET }}
- name: Prepare release assets
run: |
mkdir -p release
cp {LICENSE-MIT,LICENSE-APACHE,README.md,CHANGELOG.md} release/
cp target/${{ matrix.TARGET }}/release/binsider release/ && strip -s release/binsider
mv release/ binsider-${{env.RELEASE_VERSION}}/
- name: Create release artifacts
run: |
tar -czvf binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz \
binsider-${{ env.RELEASE_VERSION }}/
sha512sum binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz \
> binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz.sha512
- name: Sign the release
run: |
echo "${{ secrets.GPG_RELEASE_KEY }}" | base64 --decode > private.key
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --import private.key
echo "${{secrets.GPG_PASSPHRASE}}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --detach-sign \
binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz
- name: Generate a changelog
uses: orhun/git-cliff-action@v4
with:
args: --latest --github-repo ${{ github.repository }}
env:
OUTPUT: CHANGES.md
- name: Create release
run: |
gh release create "${{ github.ref_name }}" -F CHANGES.md
gh release upload "${{ github.ref_name }}" \
binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz \
binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz.sig \
binsider-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz.sha512
env:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
publish-crates-io:
name: Publish on crates.io
needs: publish-github
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Publish
run: cargo publish --locked --token ${{ secrets.CARGO_REGISTRY_TOKEN }}