Skip to content

Commit

Permalink
fix: fix removal of package command
Browse files Browse the repository at this point in the history
  • Loading branch information
pvcnt committed Aug 22, 2024
1 parent 240db34 commit c33b78d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-webapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: pnpm install --filter webapp...
- name: Build webapp
run: pnpm package --filter webapp...
run: pnpm build --filter webapp...
env:
VITE_COMMIT_SHA: ${{ github.sha }}
VITE_GITHUB_URLS: https://api.github.com
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: pnpm install --filter website...
- name: Build website
run: pnpm package --filter website...
run: pnpm build --filter website...
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build assets
run: pnpm install && pnpm package
run: pnpm install && pnpm build
env:
VITE_COMMIT_SHA: ${{ github.sha }}
- name: Tag image
Expand Down

0 comments on commit c33b78d

Please sign in to comment.