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 6
6
7
7
jobs :
8
8
build :
9
- runs-on : macos-13
9
+ runs-on : macos-latest
10
10
env :
11
11
QS_BUILD_ONLY : 1
12
12
QS_SOURCE_ROOT : " /tmp/git/quicksilver"
@@ -102,14 +102,14 @@ jobs:
102
102
run : |
103
103
tar -czvf "${{ env.PLUGIN_NAME }}.tar.gz" "${{ env.PLUGIN_NAME }}"
104
104
- name : Upload components for sign action
105
- uses : actions/upload-artifact@v2
105
+ uses : actions/upload-artifact@v4
106
106
with :
107
107
name : UNSIGNED_PLUGIN
108
108
path : /tmp/QS/build/Release/Quicksilver.app/Contents/PlugIns/${{ env.PLUGIN_NAME }}.tar.gz
109
109
110
110
sign :
111
111
needs : build
112
- runs-on : macos-13
112
+ runs-on : macos-latest
113
113
env :
114
114
MACOS_CERTIFICATE : ${{ secrets.MACOS_CERTIFICATE }}
115
115
MACOS_CERTIFICATE_PASSWORD : ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
@@ -118,7 +118,7 @@ jobs:
118
118
SIGNING_IDENTITY : ${{ secrets.SIGNING_IDENTITY }}
119
119
steps :
120
120
- name : Download targz artifact
121
- uses : actions/download-artifact@v2
121
+ uses : actions/download-artifact@v4
122
122
with :
123
123
name : UNSIGNED_PLUGIN
124
124
path : /tmp/QS/build/Release/
@@ -152,7 +152,7 @@ jobs:
152
152
run : |
153
153
tar -czvf "${{ env.PLUGIN_NAME }}.tar.gz" "${{ env.PLUGIN_NAME }}"
154
154
- name : Upload document
155
- uses : actions/upload-artifact@v2
155
+ uses : actions/upload-artifact@v4
156
156
with :
157
157
name : ${{ env.PLUGIN_NAME }}
158
158
path : /tmp/QS/build/Release/${{ env.PLUGIN_NAME }}.tar.gz
You can’t perform that action at this time.
0 commit comments