Skip to content

Commit

Permalink
Merge pull request #5 from LinuxSuRen/fix/goreleaser
Browse files Browse the repository at this point in the history
fix: goreleaser arguments are incorrect
  • Loading branch information
LinuxSuRen authored Dec 27, 2024
2 parents c83d08b + 8a3bbbd commit 1965b30
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ jobs:
go-version: 1.20.x
- uses: actions/checkout@v3.0.0
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4.1.1
uses: goreleaser/goreleaser-action@v6
env:
GITHUB_TOKEN: ${{ secrets.GH_PUBLISH_SECRETS }}
with:
github_token: ${{ secrets.GH_PUBLISH_SECRETS }}
version: v1.14.0
args: release --skip-publish --rm-dist --snapshot
version: '~> v2'
args: release --clean --snapshot

BuildImage:
runs-on: ubuntu-20.04
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
with:
go-version: 1.20.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.9.1
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PUBLISH_SECRETS }}

Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
coverage.out
bin/
.idea/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# atest-ext-collector
Collector Extension of API Testing
Collector Extension of [API Testing](https://github.com/LinuxSuRen/api-testing)

0 comments on commit 1965b30

Please sign in to comment.