Skip to content

ci fix

ci fix #2

Workflow file for this run

name: pages

Check failure on line 1 in .github/workflows/pages.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pages.yaml

Invalid workflow file

(Line: 28, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout', (Line: 32, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/configure-pages', (Line: 34, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/upload-pages-artifact', (Line: 39, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/deploy-pages'
on:
push:
branches: ["master"]
# to run this workflow manually
workflow_dispatch:
permissions:
# to read the docs
contents: read
# to deploy to Pages
pages: write
# to verify the deployment source
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 without submodules
uses: actions/checkout
with:
submodules: false
- name: Setup Pages
uses: actions/configure-pages
- name: Upload artifact
uses: actions/upload-pages-artifact
with:
path: "docs/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages