Skip to content

Commit

Permalink
Add fix to deploy.yml to npm install / build in the correc dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Clark committed Apr 11, 2024
1 parent c14e6af commit 08517db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
echo ::set-output name=distdir::$(git rev-parse --short ${{ github.sha }})-20.x-dist
- name: Install 🎯
run: yarn install
run: npm install

- name: Build 🏃
run: npm run build --env CI
run: cd site; npm run build --env CI
- name: Upload artifacts 📤
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 08517db

Please sign in to comment.