-
Notifications
You must be signed in to change notification settings - Fork 0
136 lines (120 loc) · 4.2 KB
/
preview.yml
File metadata and controls
136 lines (120 loc) · 4.2 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
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
name: Preview deployment
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/preview
jobs:
build:
if: github.event.action != 'closed'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
outputs:
image: ${{ steps.meta.outputs.tags }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha,format=short,prefix=pr-${{ github.event.pull_request.number }}-
- name: Build and push container image
uses: docker/build-push-action@v6
with:
context: .
file: ./container/Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
deploy-preview:
if: github.event_name == 'pull_request' && github.event.action != 'closed'
runs-on: ubuntu-latest
permissions:
deployments: write
pull-requests: write
needs: build
environment:
name: pr${{ github.event.pull_request.number }}
url: ${{ steps.deploy.outputs.url }}
steps:
- name: Deploy to ZAD
id: deploy
uses: RijksICTGilde/zad-actions/deploy@v2
with:
api-key: ${{ secrets.ZAD_API_KEY }}
project-id: pm-5sj
deployment-name: pr${{ github.event.pull_request.number }}
component: proef
image: ${{ needs.build.outputs.image }}
comment-on-pr: true
qr-code: true
wait-for-ready: true
github-token: ${{ secrets.GITHUB_TOKEN }}
cleanup-preview:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
permissions:
deployments: write
packages: write
pull-requests: write
steps:
- name: Cleanup ZAD deployment
uses: RijksICTGilde/zad-actions/cleanup@v2
with:
api-key: ${{ secrets.ZAD_API_KEY }}
project-id: pm-5sj
deployment-name: pr${{ github.event.pull_request.number }}
delete-github-env: true
delete-github-deployments: true
delete-pr-comment: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Delete container images for this PR
shell: bash
env:
GH_TOKEN: ${{ github.token }}
CONTAINER_ORG: ${{ github.repository_owner }}
TAG_PREFIX: pr-${{ github.event.pull_request.number }}-
CONTAINER_NAME: ${{ github.event.repository.name }}/preview
run: |
echo "Deleting container images with tag prefix: $TAG_PREFIX"
ENCODED_NAME=$(printf '%s' "$CONTAINER_NAME" | jq -sRr @uri)
VERSIONS=$(gh api "orgs/$CONTAINER_ORG/packages/container/$ENCODED_NAME/versions" 2>/dev/null | \
jq -r --arg prefix "$TAG_PREFIX" '.[] | select(.metadata.container.tags[]? | startswith($prefix)) | .id')
if [ -z "$VERSIONS" ]; then
echo "No versions found with tag prefix: $TAG_PREFIX (may already be deleted)"
exit 0
fi
DELETED_COUNT=0
for VERSION_ID in $VERSIONS; do
if gh api "orgs/$CONTAINER_ORG/packages/container/$ENCODED_NAME/versions/$VERSION_ID" -X DELETE 2>/dev/null; then
echo "Deleted version: $VERSION_ID"
DELETED_COUNT=$((DELETED_COUNT + 1))
else
echo "Failed to delete version: $VERSION_ID"
fi
done
echo "Deleted $DELETED_COUNT container version(s)"