2024-06-07 00:58:17 +00:00
|
|
|
name: Build and Deploy Prod
|
2024-01-21 03:38:40 +00:00
|
|
|
|
|
|
|
# only run on changes to main
|
|
|
|
on:
|
2024-01-22 01:17:33 +00:00
|
|
|
schedule:
|
|
|
|
- cron: 0 13 * * *
|
2024-03-03 22:21:31 +00:00
|
|
|
workflow_dispatch:
|
2024-01-21 03:38:40 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
concurrency: # prevent concurrent deploys doing strange things
|
2024-04-23 17:25:46 +00:00
|
|
|
group: deploy-prod
|
2024-01-21 03:38:40 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
# Default to bash
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
2024-01-21 21:29:49 +00:00
|
|
|
deploy:
|
|
|
|
name: Build and deploy Hugo site
|
2024-01-21 05:15:10 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-01-21 03:38:40 +00:00
|
|
|
steps:
|
2024-01-21 20:58:23 +00:00
|
|
|
- name: Hugo setup
|
|
|
|
uses: peaceiris/actions-hugo@v2.6.0
|
|
|
|
with:
|
|
|
|
hugo-version: '0.121.1'
|
|
|
|
extended: true
|
2024-01-21 03:38:40 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-04-20 22:31:14 +00:00
|
|
|
- name: Connect to Tailscale
|
|
|
|
uses: tailscale/github-action@v2
|
|
|
|
with:
|
|
|
|
oauth-client-id: ${{ secrets.TS_API_CLIENT_ID }}
|
|
|
|
oauth-secret: ${{ secrets.TS_API_CLIENT_SECRET }}
|
|
|
|
tags: ${{ secrets.TS_TAG }}
|
|
|
|
- name: Configure SSH known hosts
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.ssh
|
|
|
|
echo "${{ secrets.SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts
|
|
|
|
chmod 644 ~/.ssh/known_hosts
|
2024-01-21 03:38:40 +00:00
|
|
|
- name: Build with Hugo
|
2024-04-20 22:31:14 +00:00
|
|
|
run: HUGO_REMOTE_FONT_PATH=${{ secrets.REMOTE_FONT_PATH }} hugo --minify
|
2024-01-21 03:38:40 +00:00
|
|
|
- name: Highlight with Torchlight
|
2024-01-21 13:59:53 +00:00
|
|
|
run: |
|
|
|
|
npm i @torchlight-api/torchlight-cli
|
2024-06-07 01:40:59 +00:00
|
|
|
TORCHLIGHT_TOKEN=${{ secrets.TORCHLIGHT_TOKEN }} npx torchlight
|
2024-06-07 00:58:17 +00:00
|
|
|
- name: Deploy to Bunny
|
|
|
|
uses: ayeressian/bunnycdn-storage-deploy@v2.2.2
|
2024-01-21 03:38:40 +00:00
|
|
|
with:
|
2024-06-07 00:58:17 +00:00
|
|
|
source: public
|
|
|
|
destination: /
|
|
|
|
storageZoneName: "${{ secrets.BUNNY_STORAGE_NAME }}"
|
|
|
|
storagePassword: "${{ secrets.BUNNY_STORAGE_PASSWORD }}"
|
|
|
|
storageEndpoint: "${{ secrets.BUNNY_STORAGE_ENDPOINT }}"
|
|
|
|
accessKey: "${{ secrets.BUNNY_API_KEY }}"
|
|
|
|
pullZoneId: "${{ secrets.BUNNY_ZONE_ID }}"
|
|
|
|
upload: "true"
|
|
|
|
remove: "true"
|
|
|
|
purgePullZone: "true"
|
2024-06-07 15:15:09 +00:00
|
|
|
- name: Deploy HTML to Neocities
|
|
|
|
uses: bcomnes/deploy-to-neocities@v1
|
|
|
|
with:
|
|
|
|
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
|
|
|
|
cleanup: true
|
|
|
|
dist_dir: public
|
2024-02-28 01:21:46 +00:00
|
|
|
- name: Deploy GMI to Agate
|
|
|
|
run: |
|
2024-02-28 01:59:12 +00:00
|
|
|
rsync -avz --delete --exclude='*.html' --exclude='*.css' --exclude='*.js' -e ssh public/ deploy@${{ secrets.GMI_HOST }}:${{ secrets.GMI_CONTENT_PATH }}
|
2024-02-28 01:09:21 +00:00
|
|
|
|