Skip to content

Commit

Permalink
Fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mcahriman committed Aug 13, 2022
1 parent 4a22261 commit b0150f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/upload_release_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
run: |
# GOOS=windows GOARCH=amd64 go build -buildmode exe -o dist/srakabot-win64.exe
# GOOS=linux GOARCH=amd64 go build -buildmode exe -o dist/srakabot-linux-amd64
GOOS=linux GOARCH=arm64 go build -buildmode exe -o dist/srakabot-linux-arm64-{{ github.ref_name }}
GOOS=linux GOARCH=arm64 go build -buildmode exe -o dist/srakabot-linux-arm64-${{ github.ref_name }}
# gzip dist/srakabot-win64.exe
# gzip dist/srakabot-linux-amd64
gzip dist/srakabot-linux-arm64
gzip dist/srakabot-linux-arm64-${{ github.ref_name }}
# - name: Dump GitHub context
# id: github_context_step
Expand All @@ -49,6 +49,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./dist/srakabot-linux-arm64-{{ github.ref_name }}.gz
asset_name: srakabot-linux-arm64-{{ github.ref_name }}.gz
asset_path: ./dist/srakabot-linux-arm64-${{ github.ref_name }}.gz
asset_name: srakabot-linux-arm64-${{ github.ref_name }}.gz
asset_content_type: application/gzip

0 comments on commit b0150f5

Please sign in to comment.