forked from JohanChane/clashtui
-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (74 loc) · 2.23 KB
/
CI.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
name: CI
on:
workflow_dispatch:
pull_request:
push:
paths:
- 'src/**'
- '.github/workflows/**'
- Cargo.lock
- Makefile.toml
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache
if: ${{ !startsWith(github.ref, 'refs/tags/') && github.event_name == 'push' }}
uses: actions/cache@v4
with:
path: |
./target
~/.cargo
key: ci-${{ runner.os }}-${{ hashFiles('./Cargo.lock') }}
restore-keys: |
ci-${{ runner.os }}-${{ hashFiles('./Cargo.lock') }}
ci-${{ runner.os }}-
- uses: taiki-e/install-action@v2
with:
tool: cross, cargo-make, cargo-deb
- name: Test
run: |
cargo make ci
- name: Build
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
run: cargo make release
- name: upload artifacts
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v4
with:
name: Artifacts-${{ runner.os }}
path: artifacts
retention-days: 5
release:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master') )}}
needs: build
permissions:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
path: ./artifacts
- name: Tag as Continuous Integration
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
run: |
echo 'TAG=Continuous_Integration' >> $GITHUB_ENV
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.TAG }}
generate_release_notes: true
draft: ${{ startsWith(github.ref, 'refs/tags/') }}
prerelease : ${{ !startsWith(github.ref, 'refs/tags/') }}
files: |
artifacts/*