Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Update home.html

Update home.html #98

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.vscode/**'
- '.gitignore'
- '.gitpod.yml'
- 'LICENSE'
- 'README.md'
- 'docker-compose.yml'
workflow_dispatch:
jobs:
github-pages:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- uses: actions/checkout@v3
- name: 📦 Compile Site
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"
- name: 🚛 Publish Site
uses: cloudflare/pages-action@v1.3.0
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: soupbowl
directory: _site
wranglerVersion: '3'