Skip to content

Update power-deadeye.md #296

Update power-deadeye.md

Update power-deadeye.md #296

Workflow file for this run

name: AZola
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Test Build
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/master'
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Build only
uses: berdandy/zola-deploy-action@v0.5.8
env:
BUILD_ONLY: true
BUILD_FLAGS: --drafts
# CHECK_LINKS: true
BUILD_THEMES: false
build_and_deploy:
name: Deploy to Site
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Build and deploy
uses: berdandy/zola-deploy-action@v0.5.8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: accessibilitywars/aw2-builds
PAGES_BRANCH: main
TOKEN: ${{ secrets.TOKEN }}
BUILD_THEMES: false
CHECK_LINKS: true