Skip to content

Bump actions/deploy-pages from 2 to 3 #151

Bump actions/deploy-pages from 2 to 3

Bump actions/deploy-pages from 2 to 3 #151

Workflow file for this run

name: Build and publish
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build -- --base '/everything-you-didnt-now-you-needed/'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: List documents
run: ls -l -R
working-directory: dist
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist/
deploy:
if: github.ref == 'refs/heads/main'
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3