Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ireneazaceta authored Sep 30, 2024
1 parent 07e89a6 commit fa23440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
go get .
- name: Build the executable
run: env GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o ipmitool_exporter-${{ github.ref.name }}-linux-amd64 ./main.go
run: env GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o ipmitool_exporter-${{ github.ref_name }}-linux-amd64 ./main.go

- name: Create a release
uses: softprops/action-gh-release@v2
Expand All @@ -33,4 +33,4 @@ jobs:
draft: false
prerelease: false
files: |
ipmitool_exporter-${{ github.ref.name }}-linux-amd64
ipmitool_exporter-${{ github.ref_name }}-linux-amd64

0 comments on commit fa23440

Please sign in to comment.