Fix minor stuff in deployment workflow

This commit is contained in:
Filip Tibell 2023-07-22 14:33:50 +02:00
parent 4922a54fdd
commit 4cfc362d1a
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
name: Deploy docs to Pages
name: Deploy to GitHub Pages
on:
push:
@ -11,15 +11,18 @@ permissions:
id-token: write
concurrency:
group: "pages"
group: "gh-pages"
cancel-in-progress: false
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
@ -43,6 +46,7 @@ jobs:
path: ./out
deploy:
name: "Deploy"
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}