2024-03-07 13:49:38 +00:00
|
|
|
name: Build and copy to prod
|
|
|
|
on:
|
|
|
|
push:
|
2024-03-08 08:32:17 +00:00
|
|
|
schedule:
|
2024-06-17 20:49:40 +00:00
|
|
|
- cron: '0 * * * *'
|
2024-03-07 13:49:38 +00:00
|
|
|
jobs:
|
|
|
|
build-and-copy:
|
|
|
|
runs-on: ubuntu-latest
|
2024-10-18 18:35:55 +00:00
|
|
|
container:
|
|
|
|
image: catthehacker/ubuntu:act-latest
|
2024-03-07 13:49:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 20.x
|
|
|
|
- name: Install dependencies 📦
|
2024-03-07 13:51:48 +00:00
|
|
|
run: npm ci
|
2024-03-07 14:55:01 +00:00
|
|
|
- name: Cache build
|
|
|
|
id: cache-eleventy-build
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: .cache
|
2024-03-08 08:29:28 +00:00
|
|
|
key: cache-eleventy-build-${{ gitea.run_id }}
|
|
|
|
restore-keys: |
|
|
|
|
cache-eleventy-build
|
2024-08-20 12:28:39 +00:00
|
|
|
- name: Cache _site
|
|
|
|
id: cache-site
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: _site
|
|
|
|
key: cache-site-${{ gitea.run_id }}
|
|
|
|
restore-keys: |
|
|
|
|
cache-site
|
2024-03-07 13:49:38 +00:00
|
|
|
- name: Build eleventy
|
2024-03-07 13:51:48 +00:00
|
|
|
run: npm run build
|
2024-03-07 13:49:38 +00:00
|
|
|
env:
|
|
|
|
NODE_ENV: production
|
|
|
|
OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}
|
2024-07-10 11:11:04 +00:00
|
|
|
UMAMI_API_KEY: ${{ secrets.UMAMI_API_KEY }}
|
2024-10-18 18:31:07 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
2024-10-18 18:23:08 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to gitea container registry
|
|
|
|
uses: docker/login-action@v3
|
2024-03-07 14:06:01 +00:00
|
|
|
with:
|
2024-10-18 18:23:08 +00:00
|
|
|
registry: git.lewisdale.dev
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v6
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
tags: git.lewisdale.dev/lewis/blog:latest
|
2024-04-26 10:47:12 +00:00
|
|
|
- name: Purge XML files from cache
|
2024-04-26 10:52:03 +00:00
|
|
|
run: |
|
|
|
|
curl --request POST \
|
|
|
|
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Flewisdale.dev%2F%2A.xml&async=false' \
|
|
|
|
--header 'AccessKey: ${{ secrets.BUNNY_ACCESS_KEY }}'
|
2024-04-26 11:07:36 +00:00
|
|
|
- name: Purge JSON files from cache
|
|
|
|
run: |
|
|
|
|
curl --request POST \
|
|
|
|
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Flewisdale.dev%2F%2A.json&async=false' \
|
|
|
|
--header 'AccessKey: ${{ secrets.BUNNY_ACCESS_KEY }}'
|
|
|
|
- name: Purge CSS files from cache
|
|
|
|
run: |
|
|
|
|
curl --request POST \
|
|
|
|
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Flewisdale.dev%2F%2A.css&async=false' \
|
|
|
|
--header 'AccessKey: ${{ secrets.BUNNY_ACCESS_KEY }}'
|