Skip to content

Commit

Permalink
fixed typo in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmonisit committed Jan 27, 2024
1 parent 4369f09 commit dcc8ba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
run: pnpm install

- name: Build
run: npm run build:shrunk-dev && mv -r dist shrunk-dev-dist && npm run build:shrunk-prod && mv -r dist shrunk-prod-dist
run: npm run build:shrunk-test && mv -r dist shrunk-test-dist && npm run build:shrunk-prod && mv -r dist shrunk-prod-dist

- name: Archive Production Build
run: zip -r shrunk-dev-dist.zip shrunk-dev-dist/ && zip -r shrunk-prod-dist.zip shrunk-prod-dist/
run: zip -r shrunk-test-dist.zip shrunk-test-dist/ && zip -r shrunk-prod-dist.zip shrunk-prod-dist/

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: shrunk-dev-dist.zip shrunk-prod-dist.zip
files: shrunk-test-dist.zip shrunk-prod-dist.zip

0 comments on commit dcc8ba9

Please sign in to comment.