Skip to content

Commit

Permalink
Fix minor stuff in deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Jul 22, 2023
1 parent 4922a54 commit 4cfc362
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy docs to Pages
name: Deploy to GitHub Pages

on:
push:
Expand All @@ -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
Expand All @@ -43,6 +46,7 @@ jobs:
path: ./out

deploy:
name: "Deploy"
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down

0 comments on commit 4cfc362

Please sign in to comment.