-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (83 loc) · 2.61 KB
/
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
name: Publish
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build-info:
name: Build info
runs-on: ubuntu-latest
outputs:
target-prefix: ${{ steps.setVariables.outputs.output }}
steps:
- id: setVariables
run: |
echo "output=${GITHUB_REPOSITORY#*/}" >> $GITHUB_OUTPUT
artifacts:
name: Publish target ${{ matrix.target }}
needs: [ build-info ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: ${{ matrix.target }}
- name: Install dependencies
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt-get install musl-tools libssl-dev
- name: Build artifact
run: cargo build --release --target=${{ matrix.target }}
- name: Compress artifact
shell: bash
run: |
cp "target/${{ matrix.target }}/release/${{ needs.build-info.outputs.target-prefix}}" \
"${{ needs.build-info.outputs.target-prefix}}-${{ github.ref_name }}-${{ matrix.target }}"
zip "${{ needs.build-info.outputs.target-prefix}}-${{ github.ref_name }}-${{ matrix.target }}.zip" \
"${{ needs.build-info.outputs.target-prefix}}-${{ github.ref_name }}-${{ matrix.target }}"
- name: Upload artifact to release
uses: softprops/action-gh-release@v1
with:
files: ${{ needs.build-info.outputs.target-prefix}}*.zip
changelog:
name: Changelog
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Make release notes from changelog
uses: anton-yurchenko/git-release@v4.2.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
# Disable publishing
if: ${{ false }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo publish
uses: actions-rs/cargo@v1
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
with:
command: publish