Skip to content

Commit

Permalink
fix likely bug where CI was uploading arm as amd. simpler minor versi…
Browse files Browse the repository at this point in the history
…on pin
  • Loading branch information
abe-winter committed Sep 26, 2023
1 parent 69123bb commit ed76a5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.6'
go-version: '1.20'
- name: deps
run: go mod download
- name: build
run: |
GOARCH=arm64 make module.tar.gz && mv module.tar.gz module-arm64.tar.gz
rm wifi # otherwise make will not recreate it
GOARCH=amd64 make module.tar.gz && mv module.tar.gz module-amd64.tar.gz
- uses: viamrobotics/upload-module@main
if: github.event_name == 'release'
Expand Down

0 comments on commit ed76a5e

Please sign in to comment.