diff --git a/.github/workflows/pr_test.yaml b/.github/workflows/pr_test.yaml index 2941ddb..70bcebd 100644 --- a/.github/workflows/pr_test.yaml +++ b/.github/workflows/pr_test.yaml @@ -19,7 +19,7 @@ jobs: uses: goreleaser/goreleaser-action@v2 with: version: latest - args: build --rm-dist --snapshot --single-target + args: build --clean --snapshot --single-target workdir: backend frontend-build: diff --git a/README.md b/README.md index 0b7703a..3e6fb1e 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ pnpm run start ```bash # Build with goreleaser cd backend -goreleaser build --rm-dist --snapshot +goreleaser build --clean --snapshot # Build with go mod (for develop) cd backend diff --git a/electron-app/Makefile b/electron-app/Makefile index 854c13f..078555c 100644 --- a/electron-app/Makefile +++ b/electron-app/Makefile @@ -1,5 +1,5 @@ build-backend: - cd ../backend && goreleaser build --rm-dist --snapshot + cd ../backend && goreleaser build --clean --snapshot build-frontend: pnpm install