Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedvaziry committed Apr 2, 2024
1 parent 8aa0ce7 commit c06301f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
run: GOOS=linux GOARCH=arm go build -o vitoagent_arm ./cmd/agent.go
- name: Build AMD64
run: GOOS=linux GOARCH=amd64 go build -o vitoagent_amd64 ./cmd/agent.go
- name: Build AMD386
run: GOOS=linux GOARCH=amd386 go build -o vitoagent_amd386 ./cmd/agent.go
- name: Build AMD
run: GOOS=linux GOARCH=386 go build -o vitoagent_amd ./cmd/agent.go
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
Expand Down Expand Up @@ -58,6 +58,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./vitoagent_amd386
asset_name: vitoagent_amd386
asset_path: ./vitoagent_amd
asset_name: vitoagent_amd
asset_content_type: application/octet-stream

0 comments on commit c06301f

Please sign in to comment.