-
-
Notifications
You must be signed in to change notification settings - Fork 82
51 lines (41 loc) · 1.3 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
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:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Setup | Rust | Nightly
uses: ATiltedTree/setup-rust@v1
with:
rust-version: nightly
components: clippy rustfmt
- uses: davidB/rust-cargo-make@v1
name: Install Cargo Make
- uses: actions/cache@v3
name: Cache Cargo Files
with:
path: |
target/release
target/debug
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- name: Build Release
run: cargo make -p production release
- uses: vimtor/action-zip@v1
with:
files: target/release/odin target/release/huginn
dest: tmp/bundle.zip
- name: Auto Release Tool by Intuit
uses: mbround18/auto@v1.5.0
with:
token: ${{ secrets.GH_TOKEN }}