From fb6e651bc1226c6dc3216d1aaf218fa761fb12be Mon Sep 17 00:00:00 2001 From: MinUk Song Date: Thu, 27 Jun 2024 18:08:59 +0900 Subject: [PATCH] fix: Update ci script --- .github/workflows/pr_test.yaml | 2 +- README.md | 2 +- electron-app/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_test.yaml b/.github/workflows/pr_test.yaml index 2941ddb8..70bcebd1 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 0b7703a0..3e6fb1e2 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 854c13fa..078555ce 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