Skip to content

Merge pull request #14 from Isaak-Malers/3-add-github-pages #1

Merge pull request #14 from Isaak-Malers/3-add-github-pages

Merge pull request #14 from Isaak-Malers/3-add-github-pages #1

Workflow file for this run

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: deploy-pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
# TODO: run this command to build the docs, for now I am running it locally before checking in:
# mkdocs build -s -d ./_site -v
# Deployment job
deploy:

Check failure on line 30 in .github/workflows/deploy-pages.yml

View workflow run for this annotation

GitHub Actions / deploy-pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-pages.yml (Line: 30, Col: 3): The workflow must contain at least one job with no dependencies.
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4