2024-03-09 07:23:59 +00:00
|
|
|
name: Build & Depoly
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
depoly:
|
|
|
|
runs-on: docker
|
2024-03-09 09:43:32 +00:00
|
|
|
container:
|
2024-03-09 11:14:52 +00:00
|
|
|
image: node:20-bullseye
|
2024-03-09 07:23:59 +00:00
|
|
|
name: Depoly blog
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-03-09 11:14:52 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-03-09 07:23:59 +00:00
|
|
|
with:
|
|
|
|
submodules: true # Checkout private submodules(themes or something else).
|
|
|
|
|
|
|
|
- name: Setup pnpm
|
|
|
|
run: |
|
|
|
|
corepack enable
|
|
|
|
corepack prepare pnpm@latest-8 --activate
|
|
|
|
pnpm config set store-dir /tmp/pnpm-store
|
|
|
|
|
|
|
|
- name: Cache Dependencies
|
|
|
|
id: dependencies-cache
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: /tmp/pnpm-store
|
|
|
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Cache Generated Files
|
|
|
|
id: files-cache
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
public/**
|
2024-06-02 08:52:06 +00:00
|
|
|
db.json
|
2024-03-09 07:23:59 +00:00
|
|
|
key: generated-files
|
|
|
|
|
|
|
|
- name: Build Website
|
|
|
|
run: pnpm build
|
|
|
|
|
|
|
|
- name: Depoly Website
|
|
|
|
uses: https://github.com/cloudflare/wrangler-action@v3
|
|
|
|
with:
|
|
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
2024-06-02 08:04:26 +00:00
|
|
|
command: pages deploy --project-name=rubicons-blog public
|