Skip to content

Commit

Permalink
fix: correct binary paths in upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dnwe committed Mar 24, 2024
1 parent 55a274f commit 4e11d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ jobs:
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: node_exporter
path: node_exporter
path: .build/${GOOS}-${GOARCH}/node_exporter
retention-days: 14 # 90 is the default
- name: Upload Go Binary Checksum
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: node_exporter.sha256sum
path: node_exporter.sha256sum
path: .build/${GOOS}-${GOARCH}/node_exporter.sha256sum
retention-days: 14 # 90 is the default
- name: Setup Docker
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
Expand Down

0 comments on commit 4e11d40

Please sign in to comment.