-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·66 lines (55 loc) · 1.68 KB
/
release.yml
File metadata and controls
executable file
·66 lines (55 loc) · 1.68 KB
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
name: Rust Release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Build and Test
id: build
continue-on-error: true # Allow the workflow to continue if this fails
run: |
cargo build --release
cargo test --release
- name: Delete tag on failure
if: steps.build.outcome != 'success'
run: |
git push --delete origin ${GITHUB_REF#refs/tags/}
exit 1 # Fail the workflow
- name: Build Changelog
id: gen_changelog
uses: mikepenz/release-changelog-builder-action@v5
with:
failOnError: "true"
configuration: .github/workflows/release_config.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Package Release Assets
run: |
cd target/release
# For Linux
tar -czf ../../codeanalyzer-rs-linux.tar.gz codeanalyzer-rs
# For Windows (if cross-compilation is set up)
# zip ../../codeanalyzer-rs-windows.zip codeanalyzer-rs.exe
cd ../..
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
files: |
codeanalyzer-rs-linux.tar.gz
# codeanalyzer-rs-windows.zip
body: ${{ steps.gen_changelog.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}