Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit a5a3014

Browse files
committedApr 23, 2023
add release workflow
1 parent 6bf178b commit a5a3014

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed
 

‎.github/workflows/release.yaml

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
required: true
8+
9+
permissions:
10+
contents: write
11+
12+
env:
13+
QT_QPA_PLATFORM: offscreen
14+
15+
jobs:
16+
build-linux:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: actions/setup-python@v4
21+
with:
22+
python-version: "3.10"
23+
- name: Install dependencies
24+
run: |
25+
pip install -r requirements.txt
26+
sudo apt-get update -y
27+
sudo apt-get install -y libegl1-mesa libegl1-mesa-dev '^libxcb.*-dev' libx11-xcb-dev \
28+
libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev
29+
- name: Build application
30+
working-directory: ./app
31+
run: |
32+
pyinstaller --name=yt-dlp-gui --clean -y app.py
33+
zip -r yt-dlp-gui-linux64.zip dist/*
34+
- uses: actions/upload-artifact@v2
35+
with:
36+
name: yt-dlp-gui-linux
37+
path: ./app/yt-dlp-gui-linux64.zip
38+
39+
build-windows:
40+
name: build-windows
41+
runs-on: windows-latest
42+
steps:
43+
- uses: actions/checkout@v3
44+
- name: Set up Python
45+
uses: actions/setup-python@v4
46+
with:
47+
python-version: "3.10"
48+
- name: Install dependencies
49+
run: pip install -r requirements.txt
50+
- name: Build application
51+
working-directory: ./app
52+
run: |
53+
pyinstaller --name=yt-dlp-gui --clean -y app.py --icon ./ui/assets/yt-dlp-gui.ico --noconsole
54+
Compress-Archive -Path dist/* -DestinationPath yt-dlp-gui-win64.zip
55+
- uses: actions/upload-artifact@v2
56+
with:
57+
name: yt-dlp-gui-win
58+
path: ./app/yt-dlp-gui-win64.zip
59+
60+
github-release:
61+
name: github-release
62+
runs-on: ubuntu-latest
63+
needs:
64+
- build-linux
65+
- build-windows
66+
steps:
67+
- name: Restore linux build
68+
uses: actions/download-artifact@v3
69+
with:
70+
name: yt-dlp-gui-linux
71+
path: /opt/builds
72+
73+
- name: Restore windows build
74+
uses: actions/download-artifact@v3
75+
with:
76+
name: yt-dlp-gui-win
77+
path: /opt/builds
78+
79+
- name: Create Release
80+
uses: softprops/action-gh-release@v1
81+
with:
82+
name: ${{ inputs.version }}
83+
tag_name: ${{ inputs.version }}
84+
generate_release_notes: true
85+
draft: false
86+
prerelease: false
87+
files: |
88+
/opt/builds/yt-dlp-gui-linux64.zip
89+
/opt/builds/yt-dlp-gui-win64.zip

0 commit comments

Comments
 (0)
Failed to load comments.