-
Notifications
You must be signed in to change notification settings - Fork 17
91 lines (79 loc) · 2.11 KB
/
release.yaml
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
name: publish-release
on:
push:
tags:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
package-linux:
name: Package Linux
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
strategy:
fail-fast: false
matrix:
build: [stable]
include:
- build: stable
os: ubuntu-20.04
rust: stable
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Cache
uses: Swatinem/rust-cache@v2
with:
shared-key: "rust-${{ matrix.build }}-test"
- name: Package Linux
run: cargo mantask package_linux_all
- name: Upload assets to release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "packages/*.rpm;packages/*.deb;packages/ytdlp-gui-linux-x64-86"
tags: true
draft: true
package-windows:
name: Package windows
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
strategy:
fail-fast: false
matrix:
build: [stable]
include:
- build: stable
os: windows-latest
rust: stable
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Cache
uses: Swatinem/rust-cache@v2
with:
shared-key: "rust-${{ matrix.build }}-test"
- name: Packages script
run: cargo mantask package_windows
- name: Upload assets to release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "packages/ytdlp-gui-windows-64.zip"
tags: true
draft: true