Skip to content

More fixes

More fixes #16

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: ['1.0']
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Production build
run: npm run prod
- name: Install dependencies
working-directory: docs
run: npm install
- name: Build
working-directory: docs
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './docs/dist'
- name: Deploy to GitHub Pages
working-directory: docs
id: deployment
uses: actions/deploy-pages@v1

Check failure on line 47 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 47, Col: 9): Unexpected value 'uses' .github/workflows/deploy.yml (Line: 44, Col: 9): Required property is missing: run