Skip to content

Commit

Permalink
Merge pull request #925 from mainmatter/fix-deploy-workflow
Browse files Browse the repository at this point in the history
ci (fix): in the deploy workflow, move the install before the addon build
  • Loading branch information
BlueCutOfficial authored Mar 1, 2024
2 parents c203a2a + e1687dc commit c380614
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
node-version: 16.x
cache: pnpm

- name: Install Dependencies
run: pnpm install

- name: Build addon
run: pnpm run build:addon

- name: Install and Build 🔧
run: |
pnpm install
pnpm build:test-app
- name: Build app 🔧
run: pnpm build:test-app

- name: Deploy 🚀
uses: JamesIves/[email protected]
Expand Down

0 comments on commit c380614

Please sign in to comment.