-
-
Notifications
You must be signed in to change notification settings - Fork 82
54 lines (45 loc) · 1.47 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
name: Release
on: [push]
env:
GH_TOKEN: "${{ secrets.GH_TOKEN }}"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
name: Release Train WooohWoooohh
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
# Check out the repository
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.GH_TOKEN }}"
# Set up Rust with the stable toolchain
- name: Setup | Rust | Stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy rustfmt
# Cache Cargo build files to speed up builds
- uses: actions/cache@v4
name: Cache Cargo Files
with:
path: |
target/release
target/debug
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
# Build the project with the release profile
- name: Build Release
run: make release PROFILE=production
# Create a ZIP archive of the release binaries
- uses: vimtor/action-zip@v1
with:
files: target/release/odin target/release/huginn
dest: tmp/bundle.zip
# Use the Auto Release Tool by Intuit
- name: Auto Release Tool by Intuit
uses: mbround18/auto@v1.5.0
with:
token: ${{ secrets.GH_TOKEN }}