Skip to content

Commit

Permalink
upgrade go releaser and upload-artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
draganm committed Oct 21, 2024
1 parent 0fe6910 commit 69c4b50
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dev_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ jobs:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist --snapshot
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: darwin-amd64
path: dist/*_darwin_amd64.zip
- uses: actions/upload-artifact@v2
name: darwin-amd64
path: dist/*_darwin_amd64.zip
- uses: actions/upload-artifact@v4
with:
name: linux-amd64
path: dist/*_linux_amd64.zip
name: linux-amd64
path: dist/*_linux_amd64.zip
# - uses: actions/upload-artifact@v2
# with:
# name: windows-amd64
Expand Down

0 comments on commit 69c4b50

Please sign in to comment.