-
Notifications
You must be signed in to change notification settings - Fork 19
89 lines (75 loc) · 2.26 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
name: release
on:
push:
tags:
- 'v*.*.*'
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install System Dependencies
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Install Tauri CLI
run: cargo install tauri-cli
- name: Build the Tauri app for Linux
run: npm run tauri build
- name: Package the app
run: |
mkdir release_builds
cp src-tauri/target/release/bundle/appimage/*.AppImage ./release_builds/
cp src-tauri/target/release/bundle/deb/*.deb ./release_builds/
cp src-tauri/target/release/bundle/rpm/*.rpm ./release_builds/
cp CHANGELOG.md ./release_builds
- name: Upload the build artifacts
uses: actions/upload-artifact@v3
with:
name: dockyard-build
path: release_builds/*
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: dockyard-build
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{github.ref_name}}
name: Release - ${{github.ref_name}}
body_path: /home/runner/work/dockyard/dockyard/CHANGELOG.md
files: |
/home/runner/work/dockyard/dockyard/*.AppImage
/home/runner/work/dockyard/dockyard/*.deb
/home/runner/work/dockyard/dockyard/*.rpm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}