-
Notifications
You must be signed in to change notification settings - Fork 18
51 lines (47 loc) · 1.37 KB
/
cd.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
on:
# Trigger the workflow on push
# but only for the main branch
push:
branches:
- master
name: Continuous Deployment
concurrency:
group: "${{ github.ref }}-cd"
cancel-in-progress: true
jobs:
check-env:
runs-on: ubuntu-latest
outputs:
fly-api-token: ${{ steps.fly-api-token.outputs.defined }}
steps:
- id: fly-api-token
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
if: "${{ env.FLY_API_TOKEN != '' }}"
run: echo "defined=true" >> $GITHUB_OUTPUT
deploy:
needs: [check-env]
if: needs.check-env.outputs.fly-api-token == 'true'
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: .
cache-from: type=gha,scope=cached-stage
cache-to: type=gha,scope=cached-stage,mode=max
load: true
tags: app:latest
- uses: superfly/flyctl-actions@1.5
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: "deploy --local-only -i app:latest"
- name: Cloudflare Cache Purge Action
uses: NathanVaughn/actions-cloudflare-purge@v3.0.0
if: success()
with:
cf_zone: ${{ secrets.CLOUDFLARE_ZONE }}
cf_auth: ${{ secrets.CLOUDFLARE_AUTH_KEY }}