Skip to content

Bump actions/deploy-pages from 2 to 3 (#35) #20

Bump actions/deploy-pages from 2 to 3 (#35)

Bump actions/deploy-pages from 2 to 3 (#35) #20

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
workflow_dispatch: # allows to be run manually
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
deploy:
if: github.ref == 'refs/heads/master'
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- id: deployment
name: Deploy to GitHub Pages
uses: actions/deploy-pages@v3