mirror of
https://github.com/lune-org/docs.git
synced 2024-12-12 04:50:36 +00:00
Fix minor stuff in deployment workflow
This commit is contained in:
parent
4922a54fdd
commit
4cfc362d1a
1 changed files with 6 additions and 2 deletions
8
.github/workflows/deploy.yaml
vendored
8
.github/workflows/deploy.yaml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue