Skip to content

Commit

Permalink
fix: go compiler version
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Feb 23, 2024
1 parent fba2a29 commit b30154d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
- name: Build
working-directory: frontend
run: npm run build
- name: Install ARM64 cross-compiler
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install dependencies
working-directory: backend
run: go get ./...
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
- name: Build
working-directory: frontend
run: npm run build
- name: Install ARM64 cross-compiler
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install dependencies
working-directory: backend
run: go get ./...
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
- name: Build
working-directory: frontend
run: npm run build
- name: Install ARM64 cross-compiler
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Install dependencies
working-directory: backend
run: go get ./...
Expand Down

0 comments on commit b30154d

Please sign in to comment.