File tree 6 files changed +20
-17
lines changed
6 files changed +20
-17
lines changed Original file line number Diff line number Diff line change 55
55
run : ls -la
56
56
57
57
- name : Publish Release
58
- uses : softprops/action-gh-release@v1
58
+ uses : softprops/action-gh-release@v2
59
59
with :
60
60
files : |
61
61
${{ needs.call-macos-build.outputs.build-file }}
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
# Steps represent a sequence of tasks that will be executed as part of the job
26
26
steps :
27
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28
- - uses : actions/checkout@v3
29
- - uses : actions/setup-python@v4
28
+ - uses : actions/checkout@v4
29
+ - uses : actions/setup-python@v5
30
30
with :
31
- python-version : ' 3.10 '
31
+ python-version : ' 3.12 '
32
32
33
33
# Setup python
34
34
- name : System Setup
42
42
gzip ArtemisUploader
43
43
mv ArtemisUploader.gz ArtemisUploader.linux.gz
44
44
45
- - uses : actions/upload-artifact@v3
45
+ - uses : actions/upload-artifact@v4
46
46
with :
47
47
name : ArtemisUploader.linux.gz
48
48
path : ArtemisUploader.linux.gz
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
# Steps represent a sequence of tasks that will be executed as part of the job
26
26
steps :
27
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28
- - uses : actions/checkout@v3
29
- - uses : actions/setup-python@v4
28
+ - uses : actions/checkout@v4
29
+ - uses : actions/setup-python@v5
30
30
with :
31
- python-version : ' 3.10 '
31
+ python-version : ' 3.12 '
32
32
33
33
# Setup python
34
34
- name : System Setup
44
44
mv "ArtemisUploader.app" "tmp/"
45
45
create-dmg --volicon "artemis_uploader/resource/sparkdisk.icns" --background "artemis_uploader/resource/sfe_logo_med.png" --hide-extension "ArtemisUploader.app" --icon "ArtemisUploader.app" 100 100 --window-size 600 440 --app-drop-link 400 100 "ArtemisUploader.dmg" "tmp/"
46
46
47
- - uses : actions/upload-artifact@v3
47
+ - uses : actions/upload-artifact@v4
48
48
with :
49
49
name : ArtemisUploader.dmg
50
50
path : ArtemisUploader.dmg
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
29
29
# Steps represent a sequence of tasks that will be executed as part of the job
30
30
steps :
31
31
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32
- - uses : actions/checkout@v3
33
- - uses : actions/setup-python@v4
32
+ - uses : actions/checkout@v4
33
+ - uses : actions/setup-python@v5
34
34
with :
35
- python-version : ' 3.10 '
35
+ python-version : ' 3.12 '
36
36
37
37
# Setup python
38
38
- name : System Setup
44
44
run : |
45
45
python setup.py sdist
46
46
47
- - uses : actions/upload-artifact@v3
47
+ - uses : actions/upload-artifact@v4
48
48
with :
49
49
name : python-install-package
50
50
path : dist
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
# Steps represent a sequence of tasks that will be executed as part of the job
26
26
steps :
27
27
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28
- - uses : actions/checkout@v3
29
- - uses : actions/setup-python@v4
28
+ - uses : actions/checkout@v4
29
+ - uses : actions/setup-python@v5
30
30
with :
31
- python-version : ' 3.10 '
31
+ python-version : ' 3.12 '
32
32
33
33
# Setup python
34
34
- name : System Setup
50
50
}
51
51
Compress-Archive @compress
52
52
53
- - uses : actions/upload-artifact@v3
53
+ - uses : actions/upload-artifact@v4
54
54
with :
55
55
name : ArtemisUploader.win.zip
56
56
path : ArtemisUploader.win.zip
Original file line number Diff line number Diff line change @@ -128,6 +128,9 @@ def get_version(rel_path: str) -> str:
128
128
'Programming Language :: Python :: 3.7' ,
129
129
'Programming Language :: Python :: 3.8' ,
130
130
'Programming Language :: Python :: 3.9' ,
131
+ 'Programming Language :: Python :: 3.10' ,
132
+ 'Programming Language :: Python :: 3.11' ,
133
+ 'Programming Language :: Python :: 3.12' ,
131
134
132
135
],
133
136
You can’t perform that action at this time.
0 commit comments