diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ac496eea5..f479d1d6a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,10 +23,10 @@ jobs: git submodule update --remote - name: Build PDF run: | - cd website && npm i && npm run build_pdf + cd website && npm i && npm run build_pdf && cd .. - name: Publish run: | git config --global user.email "grants-deployer@users.noreply.github.com" git config --global user.name "grants-deployer" echo "machine github.com login grants-deployer password ${{ secrets.ACCESS_KEY }}" > ~/.netrc - npm run build && GIT_USER=grants-deployer PUBLISHING=true npm run deploy + cd website && npm run build && GIT_USER=grants-deployer PUBLISHING=true npm run deploy