-
Notifications
You must be signed in to change notification settings - Fork 15
92 lines (73 loc) · 2 KB
/
rust-build-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
name: Rust Build and Release
on:
push:
branches:
- master
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
include:
- runs-on: windows-latest
os: windows
- runs-on: ubuntu-latest
os: linux
- runs-on: macos-latest
os: mac
steps:
- name: Checkout code
uses: actions/checkout@v2
- run: git fetch --prune --unshallow --tags
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --release
- shell: bash
run: |-
mkdir dist
for file in autokuma autokuma.exe kuma kuma.exe; do
if [[ ! -e "target/release/$file" ]]; then
continue
fi
filename=$(basename "$file")
if [[ "$filename" == *.* ]]; then
extension=".${filename##*.}"
filename="${filename%.*}"
else
extension=""
fi
mv "target/release/${filename}${extension}" "dist/${filename}-${{ matrix.os }}${extension}"
done
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: autokuma-${{ matrix.os }}
path: dist/*
release:
needs: [build]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout code
uses: actions/checkout@v2
- run: git fetch --prune --unshallow --tags
- name: Parse Changelog
id: changelog
uses: coditory/changelog-parser@v1
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: autokuma
pattern: autokuma-*
merge-multiple: true
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.description }}
files: autokuma/*