File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -187,13 +187,22 @@ jobs:
187
187
- name : Build & publish
188
188
run : cargo release minor --no-confirm --execute --allow-branch main
189
189
190
+ - name : Create temporary directory for artifacts
191
+ run : mkdir -p ${{ runner.temp }}/artifacts
192
+
190
193
- name : Download all packaged artifacts
191
194
uses : actions/download-artifact@v4
192
195
with :
193
196
pattern : git-ai-*-package
194
- path : packages
197
+ path : ${{ runner.temp }}/artifacts
195
198
merge-multiple : true
196
199
200
+ - name : Move artifacts to packages directory
201
+ run : |
202
+ mkdir -p packages
203
+ # Move all artifacts from temp to packages directory
204
+ mv ${{ runner.temp }}/artifacts/* packages/
205
+
197
206
- name : Get version
198
207
id : app
199
208
run : echo "version=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[0].version')" >> $GITHUB_OUTPUT
@@ -246,4 +255,4 @@ jobs:
246
255
packages/git-ai-*.tar.gz
247
256
packages/git-ai-*.zip
248
257
metadata.json
249
- generate_release_notes : true
258
+ generate_release_notes : true
You can’t perform that action at this time.
0 commit comments