We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b470f commit 866ef6cCopy full SHA for 866ef6c
.github/workflows/release.yml
@@ -212,7 +212,7 @@ jobs:
212
runs-on: macos-12
213
env:
214
GON_PATH: ${{ github.workspace }}/gon
215
- needs: create-macos-bundle
+ needs: [build, create-macos-bundle]
216
217
steps:
218
- name: Download artifact
@@ -278,6 +278,10 @@ jobs:
278
279
- name: Sign and notarize binary
280
run: gon -log-level=debug -log-json "${{ env.GON_CONFIG_PATH }}"
281
+
282
+ - name: Upload autoupdate bundle to Arduino downloads servers
283
+ run: aws s3 sync ArduinoCreateAgent.app_notarized.zip s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.TARGET }}
284
+ if: $ {{ needs.build.outputs.prerelease }} != 'true'
285
286
- name: Upload artifact
287
uses: actions/upload-artifact@v3
0 commit comments