@@ -17,17 +17,17 @@ jobs:
17
17
env :
18
18
QS_BUILD_ONLY : 1
19
19
steps :
20
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v3
21
21
with :
22
22
submodules : recursive
23
23
- name : Build debug version
24
24
working-directory : Quicksilver
25
25
run : ./Tools/qsrelease Debug
26
26
- name : Upload debug version
27
- uses : actions/upload-artifact@v2
27
+ uses : actions/upload-artifact@v3
28
28
with :
29
- name : Quicksilver-debug.zip
30
- path : /tmp/QS/build/Debug/Quicksilver*.dmg
29
+ name : Quicksilver-debug
30
+ path : /tmp/QS/build/Debug/Quicksilver.zip
31
31
- name : Build release version
32
32
working-directory : Quicksilver
33
33
run : ./Tools/qsrelease
38
38
cp /tmp/Quicksilver.entitlements ./dmg/
39
39
tar -czvf ./dmg_ingredients.tar.gz ./dmg
40
40
- name : Upload components for sign action
41
- uses : actions/upload-artifact@v2
41
+ uses : actions/upload-artifact@v3
42
42
with :
43
43
name : DMG_INGREDIENTS
44
44
path : /tmp/QS/build/Release/dmg_ingredients.tar.gz
58
58
KEYCHAIN_PROFILE : " Quicksilver Notarization"
59
59
steps :
60
60
- name : Download dmg folder artifact
61
- uses : actions/download-artifact@v2
61
+ uses : actions/download-artifact@v3
62
62
with :
63
63
name : DMG_INGREDIENTS
64
64
path : /tmp/QS/build/Release/
71
71
QS_INFO_VERSION=$(awk '/QS_INFO_VERSION/ { print $NF }' \
72
72
/tmp/qs_build_settings)
73
73
echo "QS_INFO_VERSION=${QS_INFO_VERSION}" >> "${GITHUB_ENV}"
74
- - uses : actions/checkout@v2
74
+ - uses : actions/checkout@v3
75
75
with :
76
76
submodules : recursive
77
77
- name : Run Tools/qssign
@@ -104,19 +104,19 @@ jobs:
104
104
cd /tmp/QS/build/Release/
105
105
shasum --algorithm 256 Quicksilver*.dmg > checksum.txt
106
106
- name : Upload Quicksilver.dmg
107
- uses : actions/upload-artifact@v2
107
+ uses : actions/upload-artifact@v3
108
108
with :
109
109
name : " Quicksilver_${{ env.QS_INFO_VERSION }}.dmg"
110
110
path : /tmp/QS/build/Release/Quicksilver*.dmg
111
111
- name : Upload checksum
112
112
if : startsWith(github.ref, 'refs/tags/')
113
- uses : actions/upload-artifact@v2
113
+ uses : actions/upload-artifact@v3
114
114
with :
115
115
path : /tmp/QS/build/Release/checksum.txt
116
116
- name : Download debug artifact
117
- uses : actions/download-artifact@v2
117
+ uses : actions/download-artifact@v3
118
118
with :
119
- name : Quicksilver-debug.zip
119
+ name : Quicksilver-debug
120
120
path : /tmp/Quicksilver-debug.zip
121
121
- name : Release
122
122
uses : softprops/action-gh-release@v1
0 commit comments