-
Notifications
You must be signed in to change notification settings - Fork 2
94 lines (76 loc) · 2.24 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
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
93
94
name: Release
on:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
VERSION: 0.0.1
permissions:
contents: write
id-token: write
attestations: write
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Build
shell: bash
run: cargo build --release
- name: Upload artifact (windows)
uses: actions/upload-artifact@v4
if: startsWith(matrix.os, 'windows')
with:
name: artifact-windows
path: ./target/release/dfint-installer.exe
- name: Upload artifact (linux)
uses: actions/upload-artifact@v4
if: startsWith(matrix.os, 'ubuntu')
with:
name: artifact-linux
path: ./target/release/dfint-installer
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore files
uses: actions/download-artifact@v4
id: download
with:
pattern: artifact-*
merge-multiple: true
path: release
- name: Fetch version from Cargo.toml
run: echo VERSION=$(cat Cargo.toml | awk -F'"' '/^version/ {print $2}') >> $GITHUB_ENV
- name: Package files
run: |
cd release/
zip dfint-installer-win-${{ env.VERSION }}.zip dfint-installer.exe
chmod +x dfint-installer
tar -czf dfint-installer-lin-${{ env.VERSION }}.tar.gz dfint-installer
- name: Attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: 'release/*'
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
release/dfint-installer-win-${{ env.VERSION }}.zip
release/dfint-installer-lin-${{ env.VERSION }}.tar.gz
tag_name: ${{ env.VERSION }}
draft: true
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
files: |
./release/*