We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab45ce commit 731d444Copy full SHA for 731d444
.github/workflows/release.yml
@@ -334,12 +334,13 @@ jobs:
334
- name: Download artifact
335
uses: actions/download-artifact@v2 # download all the artifacts
336
337
+ # mandatory step because upload-release-action does not support multiple folders
338
- name: prepare artifacts for the release
339
run: |
340
mkdir release
341
chmod -v +x ArduinoCreateAgent-linux-x64/*.run
342
mv -v ArduinoCreateAgent-linux-x64/* release/
- cat ArduinoCreateAgent-osx/*.tar | tar -xvf - -i -C /release
343
+ cat ArduinoCreateAgent-osx/*.tar | tar -xvf - -i -C release/
344
mv -v ArduinoCreateAgent-windows/* release/
345
346
# - name: Read CHANGELOG
0 commit comments