-
Notifications
You must be signed in to change notification settings - Fork 23
79 lines (76 loc) · 2.82 KB
/
cd.yaml
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
name: Continuous Deployment
on:
release:
types: [created]
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
publish-release:
name: Generating artifacts for ${{ matrix.job.target }}
runs-on: ${{ matrix.job.os }}
strategy:
fail-fast: false
matrix:
job:
- os: macos-latest
target: x86_64-apple-darwin
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
binary-postfix: ".exe"
- os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
- os: macos-latest
target: aarch64-apple-darwin
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
target: ${{ matrix.job.target }}
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Install cross and build
if: matrix.job.target == 'aarch64-unknown-linux-gnu'
run: cargo install cross && cross build --release --target ${{ matrix.job.target }}
- name: Cargo build
if: matrix.job.target != 'aarch64-unknown-linux-gnu'
run: cargo build --release --target ${{ matrix.job.target }}
- name: Compress (Unix)
if: ${{ matrix.job.os != 'windows-latest' }}
run: zip -j espup-${{ matrix.job.target }}.zip target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }}
- name: Compress (Windows)
if: ${{ matrix.job.os == 'windows-latest' }}
run: Compress-Archive target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }} espup-${{ matrix.job.target }}.zip
- name: Upload compressed artifact
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: espup-${{ matrix.job.target }}.zip
tag: ${{ github.ref }}
- name: Upload binary artifact
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.job.target }}/release/espup${{ matrix.job.binary-postfix }}
asset_name: espup-${{ matrix.job.target }}${{ matrix.job.binary-postfix }}
tag: ${{ github.ref }}
publish-cratesio:
name: Publishing to Crates.io
needs: publish-release
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Cargo publish
run: cargo publish --token ${{ secrets.CARGO_API_KEY }}