diff --git a/.github/workflows/deploy-to-github-pages.yml b/.github/workflows/deploy-to-github-pages.yml index ec3fc5cc..2a6f5003 100644 --- a/.github/workflows/deploy-to-github-pages.yml +++ b/.github/workflows/deploy-to-github-pages.yml @@ -4,12 +4,12 @@ name: Deploy static content to Pages on: # Runs on pushes targeting the default branch push: - branches: [main] + branches: ['main'] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages permissions: contents: read pages: write @@ -17,13 +17,9 @@ permissions: # Allow one concurrent deployment concurrency: - group: "pages" + group: 'pages' cancel-in-progress: true -env: - # Hosted GitHub runners have 7 GB of memory available, let's use 6 GB - NODE_OPTIONS: --max-old-space-size=6144 - jobs: # Single deploy job since we're just deploying deploy: @@ -33,23 +29,23 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 - - name: Set up Node.js + uses: actions/checkout@v4 + - name: Set up Node uses: actions/setup-node@v3 with: - node-version: 16.x - cache: yarn + node-version: 18 + cache: 'npm' - name: Install dependencies - run: yarn install --frozen-lockfile --non-interactive + run: npm install - name: Build - run: yarn build + run: npm run build - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - # Upload entire repository - path: build + # Upload dist repository + path: './dist' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 \ No newline at end of file