Skip to content

Commit

Permalink
add website deployment action
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed May 25, 2024
1 parent 52c6472 commit 3bf8cab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/website.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Website

on:
push:
paths:
- website/**
- .github/workflows/website.yaml

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: redkubes/docusaurus-deploy-action@v1
with:
source-folder: website
git-user: $SOME_USERNAME
git-password: ${{ secrets.GITHUB_TOKEN }}
deployment-branch: gh-pages

0 comments on commit 3bf8cab

Please sign in to comment.