1
ewpratten.com/.github/workflows/ewpratten-com.yml
Evan Pratten ac03233b17 Revert "Scope ewpratten.com CI"
This reverts commit 65c20be6311afc120e83e8280db852203a5bcd47.
2024-11-14 12:45:29 -05:00

62 lines
1.6 KiB
YAML

name: Deploy ewpratten.com
on:
push:
jobs:
build_dev:
name: Development Build
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
environment: production
permissions:
contents: read
deployments: write
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_DIR: sites/ewpratten.com
BUILD_ONLY: true
BUILD_FLAGS: --drafts
build_prod:
name: Production Build
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
environment: production
permissions:
contents: read
deployments: write
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_DIR: sites/ewpratten.com
BUILD_ONLY: true
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ewpratten
directory: sites/ewpratten.com/public
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '2'