Skip to content

Workflow file for this run

name: "Generate homepage"
on:
push:
branches: [ "main-test-gh" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
generate-and-deploy:

Check failure on line 13 in .github/workflows/pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v3
- run: |
mkdir "./_tmp_gh_pages"
echo "Hello, World" > "./_tmp_gh_pages/index.html"
- uses: actions/upload-pages-artifact@v2
with:
path: "./_tmp_gh_pages"
- uses: actions/deploy-pages@main