Skip to content

Commit

Permalink
[tooling] update goreleaser skip flag (#1219) (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
celenechang authored Jun 5, 2024
1 parent 0a14a62 commit ac48547
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: build --skip-validate --config .goreleaser-for-linux.yaml
args: build --skip=validate --config .goreleaser-for-linux.yaml
build-darwin-binary:
runs-on: macos-latest
steps:
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
args: build --skip-validate --config .goreleaser-for-darwin.yaml
args: build --skip=validate --config .goreleaser-for-darwin.yaml
build-windows-binary:
runs-on: ubuntu-latest
steps:
Expand All @@ -58,4 +58,4 @@ jobs:
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
args: build --skip-validate --config .goreleaser-for-windows.yaml
args: build --skip=validate --config .goreleaser-for-windows.yaml
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: release --skip-publish --config .goreleaser-for-linux.yaml
args: release --skip=publish --config .goreleaser-for-linux.yaml
env:
GORELEASER_PREVIOUS_TAG: ${{steps.latest_version.outputs.release}}
- name: Upload
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
args: release --skip-publish --config .goreleaser-for-darwin.yaml
args: release --skip=publish --config .goreleaser-for-darwin.yaml
env:
GORELEASER_PREVIOUS_TAG: ${{steps.latest_version.outputs.release}}
- name: Upload
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
args: release --skip-publish --config .goreleaser-for-windows.yaml
args: release --skip=publish --config .goreleaser-for-windows.yaml
env:
GORELEASER_PREVIOUS_TAG: ${{steps.latest_version.outputs.release}}
- name: Upload
Expand Down

0 comments on commit ac48547

Please sign in to comment.