Skip to content

Commit

Permalink
[skip-changelog] add step in release wf to push on s3 released files (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
umbynos committed Jul 2, 2021
1 parent a167514 commit 26bbb66
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -145,3 +145,13 @@ jobs:
draft: false
prerelease: ${{ steps.prerelease.outputs.IS_PRE }}
artifacts: dist/arduino-fwuploader*,dist/package_index.json

- name: Upload release files on Arduino downloads servers
uses: docker://plugins/s3
env:
PLUGIN_SOURCE: "dist/arduino-fwuploader*"
PLUGIN_TARGET: "/arduino-fwuploader/"
PLUGIN_STRIP_PREFIX: "dist/"
PLUGIN_BUCKET: ${{ secrets.DOWNLOADS_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

0 comments on commit 26bbb66

Please sign in to comment.