File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : windows-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
- name : Set up Python 3.9
17
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v4
18
18
with :
19
19
python-version : 3.9
20
20
- name : Install dependencies
24
24
- name : Build executable
25
25
run : |
26
26
pyinstaller --onefile YTPMVE_UI.py
27
- - uses : actions/upload-artifact@v2
27
+ - uses : actions/upload-artifact@v4
28
28
with :
29
29
name : YTPMVE
30
30
path : ./dist/YTPMVE_UI.exe
34
34
mkdir YTPMVE
35
35
Get-Content .\installfiles.txt | foreach { mv $_ .\YTPMVE}
36
36
Compress-Archive .\YTPMVE YTPMVE-$(((get-date).ToUniversalTime()).ToString("yyyyMMdd-HHmmss")).zip
37
- - uses : actions/upload-artifact@v2
37
+ - uses : actions/upload-artifact@v4
38
38
with :
39
39
name : Dev-Release
40
40
path : ./YTPMVE*.zip
48
48
steps :
49
49
50
50
- name : Download artifacts
51
- uses : actions/download-artifact@v2
51
+ uses : actions/download-artifact@v4
52
52
with :
53
53
name : Dev-Release
54
54
You can’t perform that action at this time.
0 commit comments