-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (82 loc) · 2.49 KB
/
deploy.yml
File metadata and controls
100 lines (82 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Sync and Deploy Wiki
on:
# Run every 15 minutes
schedule:
- cron: "*/15 * * * *"
# Allow manual trigger
workflow_dispatch:
# Auto-deploy on code changes
push:
branches: [astro]
# Required permissions for GitHub Pages deployment
permissions:
contents: read
pages: write
id-token: write
# Prevent multiple deployments running at once
concurrency:
group: pages
cancel-in-progress: false
jobs:
sync-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
# - name: Restore Drive sync cache
# uses: actions/cache@v4
# with:
# path: |
# src/content/docs/
# public/images/
# sync-state.json
# folder-metadata.json
# key: drive-sync-${{ github.run_number }}
# restore-keys: |
# drive-sync-
- name: Sync from Google Drive
id: sync
env:
GOOGLE_SERVICE_ACCOUNT_JSON: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_JSON }}
GOOGLE_DRIVE_FOLDER_ID: ${{ secrets.GOOGLE_DRIVE_FOLDER_ID }}
run: pnpm sync
- name: Build Astro site
if: steps.sync.outputs.has_changes == 'true'
env:
PUBLIC_GOOGLE_ANALYTICS_ID: ${{ secrets.PUBLIC_GOOGLE_ANALYTICS_ID }}
run: pnpm build
- name: Setup Pages
if: steps.sync.outputs.has_changes == 'true'
uses: actions/configure-pages@v4
- name: Upload artifact
if: steps.sync.outputs.has_changes == 'true'
uses: actions/upload-pages-artifact@v3
with:
path: "./dist"
- name: Deploy to GitHub Pages
if: steps.sync.outputs.has_changes == 'true'
id: deployment
uses: actions/deploy-pages@v4