Skip to content

flow?

flow? #6

Workflow file for this run

name: Github Pages
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- shell: bash
run: mkdir -p _site
- uses: jaywcjlove/markdown-to-html-cli@main
with:
source: README.md
output: _site/index.html
- uses: actions/upload-pages-artifact@v3
deploy:

Check failure on line 25 in .github/workflows/page.yml

View workflow run for this annotation

GitHub Actions / Github Pages

Invalid workflow file

The workflow is not valid. .github/workflows/page.yml (Line: 25, Col: 5): Unexpected value 'deploy'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4