Skip to content

[Article] Le monopole des goûts #26

[Article] Le monopole des goûts

[Article] Le monopole des goûts #26

Workflow file for this run

# On every push this script is executed
on:
push:
branches:
- blog
name: Build and deploy blog branch in main to github pages
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/blog'
steps:
- name: checkout
uses: actions/checkout@v4
- name: build_and_deploy
uses: shalzz/zola-deploy-action@master
env:
# Target branch
PAGES_BRANCH: main
BUILD_DIR: src
# Provide personal access token
# TOKEN: ${{ secrets.TOKEN }}
# Or if publishing to the same repo, use the automatic token
TOKEN: ${{ secrets.GITHUB_TOKEN }}