Skip to content

Commit

Permalink
ci: update workflow and .goreleaser.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Jun 5, 2024
1 parent 18bbabc commit beac410
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: ./
with:
version: ${{ matrix.version }}
args: check --debug
args: check --verbose
workdir: ./test
-
name: GoReleaser
Expand All @@ -59,7 +59,7 @@ jobs:
with:
distribution: ${{ matrix.distribution }}
version: ${{ matrix.version }}
args: release --skip-publish --clean --snapshot
args: release --skip=publish --clean --snapshot
workdir: ./test

install-only:
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
name: Check
if: ${{ !(github.event_name == 'pull_request' && matrix.distribution == 'goreleaser-pro') }}
run: |
goreleaser check --debug
goreleaser check --verbose
signing:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
uses: ./
with:
version: latest
args: -f .goreleaser-signing.yml check --debug
args: -f .goreleaser-signing.yml check --verbose
workdir: ./test
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
Expand All @@ -140,7 +140,7 @@ jobs:
uses: ./
with:
version: latest
args: -f .goreleaser-signing.yml release --skip-publish --clean --snapshot
args: -f .goreleaser-signing.yml release --skip=publish --clean --snapshot
workdir: ./test
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
Expand All @@ -162,13 +162,13 @@ jobs:
name: Check
uses: ./
with:
args: check --debug
args: check --verbose
workdir: ./test
-
name: GoReleaser
uses: ./
with:
args: release --skip-publish --clean --snapshot
args: release --skip=publish --clean --snapshot
workdir: ./test
-
name: Upload assets
Expand All @@ -194,7 +194,7 @@ jobs:
name: GoReleaser
uses: ./
with:
args: release --config .goreleaser-dist.yml --skip-publish --clean --snapshot
args: release --config .goreleaser-dist.yml --skip=publish --clean --snapshot
workdir: ./test
-
name: Check dist
Expand Down
1 change: 1 addition & 0 deletions test/.goreleaser-dist.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
env:
- GO111MODULE=on

Expand Down
1 change: 1 addition & 0 deletions test/.goreleaser-signing.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
env:
- GO111MODULE=on

Expand Down
1 change: 1 addition & 0 deletions test/.goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
env:
- GO111MODULE=on

Expand Down

0 comments on commit beac410

Please sign in to comment.