Skip to content

Commit

Permalink
chore: update goreleaser + disable validation
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthalles committed May 18, 2024
1 parent 7e082d0 commit 50a7d67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ jobs:
uses: goreleaser/goreleaser-action@5742e2a039330cbb23ebf35f046f814d4c6ff811
with:
distribution: goreleaser
version: v1.24
args: release --clean --timeout 60m
version: v1.26.1
args: release --clean --timeout 60m --skip=validate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ tasks:
desc: Build without publishing
summary: Requires a clean git state.
deps: [build:backend-tidy, build:frontend]
cmds: [goreleaser release --clean --skip=publish --timeout 60m]
cmds: [goreleaser release --clean --skip=validate --skip=publish --timeout 60m]

release:
desc: Release binaries to GitHub
Expand All @@ -147,7 +147,7 @@ tasks:
- A git tag must be created right before running this task.
- Git must be clean.
deps: [build:backend-tidy, build:frontend]
cmds: [goreleaser release --clean --timeout 60m]
cmds: [goreleaser release --clean --skip=validate --timeout 60m]

clean:
desc: Clean-up all build artifacts
Expand Down

0 comments on commit 50a7d67

Please sign in to comment.