Skip to content

Commit

Permalink
Add GitHub Action to publish site
Browse files Browse the repository at this point in the history
  • Loading branch information
julianaklulo committed Oct 23, 2023
1 parent aa4f348 commit bf4e73c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pelican.yml
Original file line number Diff line number Diff line change
@@ -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: bimbimprasetyoafif/pelican-simple@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit bf4e73c

Please sign in to comment.