Defer plausible pageview tracking #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# On every push this script is executed | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Publish site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3.0.0 | |
- name: Build and deploy | |
uses: shalzz/zola-deploy-action@v0.17.1 | |
env: | |
# Target branch | |
PAGES_BRANCH: gh-pages | |
# Provide personal access token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |