@@ -17,17 +17,17 @@ jobs:
1717 env :
1818 QS_BUILD_ONLY : 1
1919 steps :
20- - uses : actions/checkout@v2
20+ - uses : actions/checkout@v3
2121 with :
2222 submodules : recursive
2323 - name : Build debug version
2424 working-directory : Quicksilver
2525 run : ./Tools/qsrelease Debug
2626 - name : Upload debug version
27- uses : actions/upload-artifact@v2
27+ uses : actions/upload-artifact@v3
2828 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
3131 - name : Build release version
3232 working-directory : Quicksilver
3333 run : ./Tools/qsrelease
3838 cp /tmp/Quicksilver.entitlements ./dmg/
3939 tar -czvf ./dmg_ingredients.tar.gz ./dmg
4040 - name : Upload components for sign action
41- uses : actions/upload-artifact@v2
41+ uses : actions/upload-artifact@v3
4242 with :
4343 name : DMG_INGREDIENTS
4444 path : /tmp/QS/build/Release/dmg_ingredients.tar.gz
5858 KEYCHAIN_PROFILE : " Quicksilver Notarization"
5959 steps :
6060 - name : Download dmg folder artifact
61- uses : actions/download-artifact@v2
61+ uses : actions/download-artifact@v3
6262 with :
6363 name : DMG_INGREDIENTS
6464 path : /tmp/QS/build/Release/
7171 QS_INFO_VERSION=$(awk '/QS_INFO_VERSION/ { print $NF }' \
7272 /tmp/qs_build_settings)
7373 echo "QS_INFO_VERSION=${QS_INFO_VERSION}" >> "${GITHUB_ENV}"
74- - uses : actions/checkout@v2
74+ - uses : actions/checkout@v3
7575 with :
7676 submodules : recursive
7777 - name : Run Tools/qssign
@@ -104,19 +104,19 @@ jobs:
104104 cd /tmp/QS/build/Release/
105105 shasum --algorithm 256 Quicksilver*.dmg > checksum.txt
106106 - name : Upload Quicksilver.dmg
107- uses : actions/upload-artifact@v2
107+ uses : actions/upload-artifact@v3
108108 with :
109109 name : " Quicksilver_${{ env.QS_INFO_VERSION }}.dmg"
110110 path : /tmp/QS/build/Release/Quicksilver*.dmg
111111 - name : Upload checksum
112112 if : startsWith(github.ref, 'refs/tags/')
113- uses : actions/upload-artifact@v2
113+ uses : actions/upload-artifact@v3
114114 with :
115115 path : /tmp/QS/build/Release/checksum.txt
116116 - name : Download debug artifact
117- uses : actions/download-artifact@v2
117+ uses : actions/download-artifact@v3
118118 with :
119- name : Quicksilver-debug.zip
119+ name : Quicksilver-debug
120120 path : /tmp/Quicksilver-debug.zip
121121 - name : Release
122122 uses : softprops/action-gh-release@v1
0 commit comments