Skip to content

Commit

Permalink
Merge pull request #17 from quexten/feature/arm_and_x86_builds
Browse files Browse the repository at this point in the history
Add arm and x86 builds
  • Loading branch information
quexten authored Dec 22, 2023
2 parents 5608fed + 706263c commit 4934c52
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,15 @@ jobs:

- name: Build with All features
run: go build -o goldwarden_linux_x86_64 -v .
- name: Build minimal featureset
- name: Build minimal x86_64 featureset
run: go build -tags nofido2 -tags noautofill -o goldwarden_linux_minimal_x86_64 -v .
- name: Build minimal x86 featureset
run: GOARCH=386 go build -tags nofido2 -tags noautofill -o goldwarden_linux_x86 -v .
- name: Build minimal arm64 featureset
run: GOARCH=arm64 go build -tags nofido2 -tags noautofill -o goldwarden_linux_arm64 -v .
- uses: AButler/upload-release-assets@v2.0
with:
files: './goldwarden_linux_x86_64;./goldwarden_linux_x86_64_minimal'
files: './goldwarden_linux_x86_64;./goldwarden_linux_x86_64_minimal;./goldwarden_linux_x86;./goldwarden_linux_arm64'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Validate ArchLinux PKGBUILD
uses: hapakaien/archlinux-package-action@v2
Expand Down

0 comments on commit 4934c52

Please sign in to comment.