Skip to content

Commit

Permalink
Switch to hosted action
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmysawczuk committed Dec 24, 2022
1 parent d5b8fe4 commit 334130e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -a -o "tmpl-${{ steps.tag.outputs.tag }}-linux-386" -ldflags "-s -w $(cat /tmp/buildtags)" -mod=vendor .
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -a -o "tmpl-${{ steps.tag.outputs.tag }}-darwin-amd64" -ldflags "-s -w $(cat /tmp/buildtags)" -mod=vendor .
- name: Upload build (linux, amd64)
uses: actions/upload-release-asset@v1
uses: jimmysawczuk/actions/github/upload-release-asset@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -37,7 +37,7 @@ jobs:
asset_name: tmpl-${{ steps.tag.outputs.tag }}-linux-amd64
asset_content_type: application/octet-stream
- name: Upload build (linux, 386)
uses: actions/upload-release-asset@v1
uses: jimmysawczuk/actions/github/upload-release-asset@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -46,7 +46,7 @@ jobs:
asset_name: tmpl-${{ steps.tag.outputs.tag }}-linux-386
asset_content_type: application/octet-stream
- name: Upload build (darwin, amd64)
uses: actions/upload-release-asset@v1
uses: jimmysawczuk/actions/github/upload-release-asset@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 334130e

Please sign in to comment.