diff --git a/.github/workflows/pelican.yml b/.github/workflows/pelican.yml new file mode 100644 index 0000000..ba7b448 --- /dev/null +++ b/.github/workflows/pelican.yml @@ -0,0 +1,19 @@ +name: Pelican site CI + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: nelsonjchen/gh-pages-pelican-action@0.1.5 + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file