Skip to content

Fix typo and rename variables #4

Fix typo and rename variables

Fix typo and rename variables #4

Workflow file for this run

name: Deploy and build site
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install nodejs
uses: actions/[email protected]
with:
node-version: '20.x'
- run: node build/index.js
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site/'
- run: echo | ls site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4