8000 Add support for macos arm64 build by umbynos · Pull Request #1770 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

Add support for macos arm64 build #1770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 22, 2022
Prev Previous commit
Next Next commit
Revert "disable s3 push for testing"
This reverts commit c4fd700.
  • Loading branch information
umbynos committed Jun 17, 2022
commit 74889c3d6c540aefaaf26cba75618f535850ebdc
32 changes: 16 additions & 16 deletions .github/workflows/release-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,19 +197,19 @@ jobs:
# (all the files we need are in the DIST_DIR root)
artifacts: ${{ env.DIST_DIR }}/*

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

# - name: Update Homebrew formula
# if: steps.prerelease.outputs.IS_PRE != 'true'
# uses: dawidd6/action-homebrew-bump-formula@v3
# with:
# token: ${{ secrets.ARDUINOBOT_GITHUB_TOKEN }}
# formula: arduino-cli
- name: Upload release files on Arduino downloads servers
uses: docker://plugins/s3
env:
PLUGIN_SOURCE: "${{ env.DIST_DIR }}/*"
PLUGIN_TARGET: ${{ env.AWS_PLUGIN_TARGET }}
PLUGIN_STRIP_PREFIX: "${{ env.DIST_DIR }}/"
PLUGIN_BUCKET: ${{ secrets.DOWNLOADS_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Update Homebrew formula
if: steps.prerelease.outputs.IS_PRE != 'true'
uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{ secrets.ARDUINOBOT_GITHUB_TOKEN }}
formula: arduino-cli
0