-
-
Notifications
You must be signed in to change notification settings - Fork 22
188 lines (148 loc) · 5.32 KB
/
prerelease.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: build-prerelease
on:
workflow_dispatch:
jobs:
build-Linux:
runs-on: ubuntu-20.04
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.8
- name: Install Python Dependencies
run: |
python3 -m pip install -r requirements.txt
- name: install other requirements
run : |
sudo apt-get install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev
- name: Build
run: python3 build.py --build_exe
- name: copy backend
run: |
mv dist/ bin/
cp -r backend bin/
- name: compress archive
run: |
zip -r REAL-Video-Enhancer-2.0-Linux.zip bin/
- name: Save Archive as artifact
uses: actions/upload-artifact@v3
with:
name: REAL-Video-Enhancer-2.0-Linux.zip
path: REAL-Video-Enhancer-2.0-Linux.zip
build-Windows:
runs-on: windows-2019
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.8
- name: Install Python Dependencies
run: |
python3 -m pip install -r requirements.txt
- name: Build
run: python3 build.py --build_exe
- name: copy backend
run: cp -r backend dist/REAL-Video-Enhancer/
- name: compress archive
run: |
cd dist
tar -a -c -f REAL-Video-Enhancer-2.0-Windows.zip REAL-Video-Enhancer
cd ..
cp dist/REAL-Video-Enhancer-2.0-Windows.zip REAL-Video-Enhancer-2.0-Windows.zip
- name: Save Archive as artifact
uses: actions/upload-artifact@v3
with:
name: REAL-Video-Enhancer-2.0-Windows.zip
path: REAL-Video-Enhancer-2.0-Windows.zip
build-MacOS:
runs-on: macos-13
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.9
- name: Install Python Dependencies
run: |
brew install llvm@15
brew install pyside
python3 -m pip install -r requirements.txt
- name: Build
run: python3 build.py --build_exe
- name: copy backend
run: |
mv dist/ bin/
cp -r backend bin/
- name: compress archive
run: |
zip -r REAL-Video-Enhancer-2.0-MacOS_x86_64.zip bin/
- name: Save Archive as artifact
uses: actions/upload-artifact@v3
with:
name: REAL-Video-Enhancer-2.0-MacOS_x86_64.zip
path: REAL-Video-Enhancer-2.0-MacOS_x86_64.zip
build-MacOS_arm64:
runs-on: macos-14
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.9
- name: Install Python Dependencies
run: |
brew install pyside@6
python3 -m pip install -r requirements.txt
- name: Build
run: |
python3 build.py
python3 build.py --build_exe
- name: copy backend
run: |
mv dist/ bin/
cp -r backend bin/
- name: compress archive
run: |
zip -r REAL-Video-Enhancer-2.0-MacOS_arm64.zip bin/
- name: Save Archive as artifact
uses: actions/upload-artifact@v3
with:
name: REAL-Video-Enhancer-2.0-MacOS_arm64.zip
path: REAL-Video-Enhancer-2.0-MacOS_arm64.zip
Release:
needs: [build-Windows, build-Linux, build-MacOS, build-MacOS_arm64]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v3
with:
path: artifacts
- name: Generate version and tag
id: version_tag
run: |
version=$(python -c "from datetime import datetime; print(str(datetime.now()).split(' ')[0].replace('-',''))")
tag=$(python -c "import random, string; print(''.join(random.choices(string.ascii_letters, k=8)))")
echo "Version=$version"
echo "Tag=$version"
echo "::set-output name=version::$version"
echo "::set-output name=tag::$version"
- name: Create Release and Upload Release Asset
uses: softprops/action-gh-release@v1
with:
name: REAL Video Enhancer 2.0 Pre-Release
tag_name: prerelease_2.0
body: ${{ steps.version_tag.outputs.tag }}
draft: false
prerelease: true
files: |
artifacts/REAL-Video-Enhancer-2.0-Windows.zip/REAL-Video-Enhancer-2.0-Windows.zip
artifacts/REAL-Video-Enhancer-2.0-Linux.zip/REAL-Video-Enhancer-2.0-Linux.zip
artifacts/REAL-Video-Enhancer-2.0-MacOS_x86_64.zip/REAL-Video-Enhancer-2.0-MacOS_x86_64.zip
artifacts/REAL-Video-Enhancer-2.0-MacOS_arm64.zip/REAL-Video-Enhancer-2.0-MacOS_arm64.zip