diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml new file mode 100644 index 0000000..2834ebb --- /dev/null +++ b/.github/workflows/website.yml @@ -0,0 +1,14 @@ +name: CI +on: [push] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: redkubes/docusaurus-deploy-action@v1.2 + with: + source-folder: website + git-user: ${{ secrets.GIT_USER }} + git-password: ${{ secrets.GITHUB_TOKEN }} + deployment-branch: gh-pages \ No newline at end of file