Skip to content

Commit 378296d

Browse files
committed
fix: add upload step for build artifacts in GitHub Actions workflow
1 parent c197056 commit 378296d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ jobs:
5151
- name: Build for Linux arm64
5252
run: |
5353
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags="-s -w -X github.com/node-pulse/agent/cmd.Version=dev-${{ github.sha }}" -o dist/nodepulse-linux-arm64 .
54+
55+
- name: Upload build artifacts
56+
uses: actions/upload-artifact@v4
57+
with:
58+
name: nodepulse-binaries
59+
path: dist/*
60+
retention-days: 7

0 commit comments

Comments
 (0)