diff --git a/.github/workflows/raspberry-mint-dev.yml b/.github/workflows/raspberry-mint-dev.yml index db651e1a8..b848a826e 100644 --- a/.github/workflows/raspberry-mint-dev.yml +++ b/.github/workflows/raspberry-mint-dev.yml @@ -29,23 +29,29 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages uses: actions/configure-pages@v5 + - name: Set up Node.js uses: actions/setup-node@v4 with: node-version-file: ./package.json + - name: npm install - working-directory: ./raspberry-mint + working-directory: ./raspberry-mint-dev run: npm install + - name: webpack - working-directory: ./raspberry-mint + working-directory: ./raspberry-mint-dev run: npm run build + - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: './raspberry-mint-dev/build' + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4