media-object #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Pages | ||
on: [push] | ||
permissions: | ||
contents: write | ||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
- name: Install and Build 🔧 | ||
with: | ||
node-version: 20 | ||
run: | | ||
Check failure on line 14 in .github/workflows/pages.yml GitHub Actions / GitHub PagesInvalid workflow file
|
||
npm ci | ||
npm run pages | ||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: pages | ||
clean: true |