-
Notifications
You must be signed in to change notification settings - Fork 4
137 lines (119 loc) · 4.7 KB
/
deploy.yml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Build and deploy
on:
push:
paths:
- "src/**/*"
- "_config.ts"
- "CNAME"
- "deps.ts"
- ".rebuild" # same ^^
- ".github/workflows/deploy.yml"
env:
DENO_VERSION: v1.40.2
BUILD_ARTIFACT: johan.im-build
BUILD_FOLDER: build
MASTODON_LOG_FILE: .mastodon-notes
NOTES_DIR: src/notes
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ env.DENO_VERSION }}
- name: Build site
run: deno task build --quiet
env:
NODE_ENV: production
ENV: production
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_ARTIFACT }}
path: ${{ env.BUILD_FOLDER }}
retention-days: 1
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download build
uses: actions/download-artifact@v4
with:
name: ${{ env.BUILD_ARTIFACT }}
path: ${{ env.BUILD_FOLDER }}
- name: Deploy to GitHub Pages
if: github.ref_name == 'main'
uses: JamesIves/github-pages-deploy-action@v4
with:
# The branch the action should deploy to.
branch: gh-pages
# The folder the action should deploy.
folder: ${{ env.BUILD_FOLDER }}
- name: Purge Cloudflare cache
if: github.ref_name == 'main'
uses: jakejarvis/cloudflare-purge-action@master
env:
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
check_latest_note:
name: Check if we should to post to Mastodon
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check if latest note is already posted
id: mastodon_note_check
run: |
latest=$(ls -r1 "$NOTES_DIR" | grep -v "_" | head -n 1)
note_id=$(./script/check-mastodon-note.sh "$latest")
[ -z "$note_id" ] && echo "Latest note $latest is posted. Bail." || echo "Latest note $latest is not posted. Do post."
[ ! -z "$note_id" ] && echo "do_post=true" >> "$GITHUB_OUTPUT"
echo "latest_note_id=$note_id" >> "$GITHUB_OUTPUT"
echo "latest_note_path=$latest" >> "$GITHUB_OUTPUT"
env:
NOTES_DIR: ${{ env.NOTES_DIR }}
post_mastodon:
name: Send latest micro post to Mastodon
needs: [deploy, check_latest_note] # can't send post with permalink until site is deployed
runs-on: ubuntu-latest
if: ${{ needs.check_latest_note.outputs.do_post }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Wait for site to deploy
timeout-minutes: 5
run: ./script/wait-for-status.sh "$LATEST_NOTE_PATH"
env:
LATEST_NOTE_PATH: ${{ needs.check_latest_note.outputs.latest_note_path }}
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ env.DENO_VERSION }}
- name: Post to Mastodon
run: deno run --allow-net --allow-read --allow-write --allow-env script/mastodon.ts
env:
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}
- name: Write to log
run: |
echo "$LATEST_UNPOSTED" >> $MASTODON_LOG_FILE
cat "$MASTODON_LOG_FILE"
env:
MASTODON_LOG_FILE: ${{ env.MASTODON_LOG_FILE }}
LATEST_UNPOSTED: ${{ needs.check_latest_note.outputs.latest_note_id }}
- name: Commit and push posted notes
run: |
git config user.name "Automated"
git config user.email "[email protected]"
git add $MASTODON_LOG_FILE
timestamp=$(date -u)
git commit -m "Latest post to Mastodon: $timestamp [skip-ci]" || exit 0
git push
env:
MASTODON_LOG_FILE: ${{ env.MASTODON_LOG_FILE }}