Skip to content

Commit

Permalink
Experiment with building binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
abatilo committed May 11, 2024
1 parent a46eeae commit 869641b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,21 @@ jobs:
contents: read
with:
name: resume

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
check-latest: true
cache-dependency-path: "**/*.sum"
- run: |
GOOS=darwin GOARCH=arm64 go build -o resume-darwin-arm64 main.go
GOOS=linux GOARCH=amd64 go build -o resume-linux-amd64 main.go
- uses: actions/upload-artifact@v4
with:
name: resume
path: |
resume-darwin-arm64
resume-linux-amd64

0 comments on commit 869641b

Please sign in to comment.