mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-06 08:34:14 +01:00
🤖 Re-enables docs site build automation
This commit is contained in:
parent
a6960a804f
commit
2ca71efa29
1 changed files with 18 additions and 0 deletions
18
.github/workflows/build-docs-site.yml
vendored
Normal file
18
.github/workflows/build-docs-site.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Builds and published Dashy's documentation website
|
||||
name: Build Docs Site
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ WEBSITE/docs-site-source ]
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/WEBSITE/docs-site-source'
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: redkubes/docusaurus-deploy-action@v1
|
||||
with:
|
||||
source-folder: ./
|
||||
git-user: ${{ github.actor }}
|
||||
git-password: ${{ secrets.GITHUB_TOKEN }}
|
||||
deployment-branch: gh-pages
|
||||
Loading…
Reference in a new issue