Skip to content

Use native actions for publishing to Pages #26

Use native actions for publishing to Pages

Use native actions for publishing to Pages #26

Workflow file for this run

name: Publish
on:
push:
branches:
- master
- publish-pages
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Output Bikeshed to HTML
uses: netwerk-digitaal-erfgoed/bikeshed-action@v1
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: '.''

Check failure on line 32 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
- id: deployment
uses: actions/deploy-pages@v2