forked from firecrawl/firecrawl
-
Notifications
You must be signed in to change notification settings - Fork 0
194 lines (172 loc) 路 6.47 KB
/
Copy pathdeploy-image.yml
File metadata and controls
194 lines (172 loc) 路 6.47 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: Deploy Images to GHCR
on:
push:
branches:
- main
paths:
- apps/api/**
- .github/workflows/deploy-image.yml
- .github/scripts/resolve_api_image_version.py
workflow_dispatch:
inputs:
bump:
description: Version bump to apply when publishing a new deploy tag
required: false
default: patch
type: choice
options:
- patch
- minor
permissions:
contents: write
packages: write
concurrency:
group: api-image-release
cancel-in-progress: false
jobs:
version:
runs-on: blacksmith-2vcpu-ubuntu-2404
outputs:
version: ${{ steps.version.outputs.version }}
tag: ${{ steps.version.outputs.tag }}
tag_exists: ${{ steps.version.outputs.tag_exists }}
major: ${{ steps.version.outputs.major }}
minor: ${{ steps.version.outputs.minor }}
major_minor: ${{ steps.version.outputs.major_minor }}
short_sha: ${{ steps.version.outputs.short_sha }}
image: ${{ steps.version.outputs.image }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Ensure main ref
run: |
if [ "${GITHUB_REF}" != "refs/heads/main" ]; then
echo "::error::API image releases must run from refs/heads/main, got ${GITHUB_REF}"
exit 1
fi
- name: Fetch tags
run: git fetch --force --tags origin
- name: Resolve image version
id: version
env:
BUMP: ${{ github.event.inputs.bump || 'patch' }}
run: python .github/scripts/resolve_api_image_version.py --bump "${BUMP}" --sha "${GITHUB_SHA}"
build:
needs: version
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- platform: linux/amd64
platform_suffix: linux-amd64
runner: blacksmith-4vcpu-ubuntu-2404
- platform: linux/arm64
platform_suffix: linux-arm64
runner: blacksmith-4vcpu-ubuntu-2404-arm
defaults:
run:
working-directory: './apps/api'
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: Setup Blacksmith Builder
uses: useblacksmith/setup-docker-builder@ef12d5b165b596e3aa44ea8198d8fde563eab402 # v1
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build and Push Image'
uses: useblacksmith/build-push-action@30c71162f16ea2c27c3e21523255d209b8b538c1 # v2
with:
context: ./apps/api
push: true
tags: ${{ needs.version.outputs.image }}:sha-${{ needs.version.outputs.short_sha }}-${{ matrix.platform_suffix }}
platforms: ${{ matrix.platform }}
provenance: false
build-args: |
GIT_SHA=${{ github.sha }}
cache-from: type=registry,ref=${{ needs.version.outputs.image }}:buildcache-${{ matrix.platform_suffix }}
cache-to: type=registry,ref=${{ needs.version.outputs.image }}:buildcache-${{ matrix.platform_suffix }},mode=max
- name: Verify pushed image contents
env:
IMAGE_TAG: ${{ needs.version.outputs.image }}:sha-${{ needs.version.outputs.short_sha }}-${{ matrix.platform_suffix }}
EXPECTED_SHA: ${{ github.sha }}
run: |
docker pull "${IMAGE_TAG}"
actual_sha="$(docker run --rm --entrypoint node "${IMAGE_TAG}" -p 'process.env.FIRECRAWL_BUILD_SHA')"
if [ "${actual_sha}" != "${EXPECTED_SHA}" ]; then
echo "::error::Image build SHA mismatch: expected ${EXPECTED_SHA}, got ${actual_sha}"
exit 1
fi
docker run --rm --entrypoint node "${IMAGE_TAG}" -e '
const fs = require("fs");
for (const path of ["dist/src/harness.js", "dist/src/controllers/v0/crawl-status.js", "BUILD_SHA"]) {
if (!fs.statSync(path).size) {
throw new Error(`${path} missing or empty`);
}
}
'
publish:
runs-on: blacksmith-2vcpu-ubuntu-2404
needs:
- version
- build
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Create Git tag
env:
RELEASE_TAG: ${{ needs.version.outputs.tag }}
run: |
git fetch --force --tags origin
if git rev-parse -q --verify "refs/tags/${RELEASE_TAG}" >/dev/null; then
tag_commit="$(git rev-list -n 1 "${RELEASE_TAG}")"
if [ "${tag_commit}" != "${GITHUB_SHA}" ]; then
echo "::error::${RELEASE_TAG} already points at ${tag_commit}, not ${GITHUB_SHA}"
exit 1
fi
echo "${RELEASE_TAG} already exists on this commit; reusing it."
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag -a "${RELEASE_TAG}" "${GITHUB_SHA}" -m "Release API image ${RELEASE_TAG}"
git push origin "${RELEASE_TAG}"
- name: 'Create and Push Multi-Arch Manifest'
timeout-minutes: 10
env:
IMAGE: ${{ needs.version.outputs.image }}
VERSION: ${{ needs.version.outputs.version }}
MAJOR: ${{ needs.version.outputs.major }}
MAJOR_MINOR: ${{ needs.version.outputs.major_minor }}
SHORT_SHA: ${{ needs.version.outputs.short_sha }}
run: |
set -euo pipefail
amd64_image="${IMAGE}:sha-${SHORT_SHA}-linux-amd64"
arm64_image="${IMAGE}:sha-${SHORT_SHA}-linux-arm64"
manifest_tags=(
"${IMAGE}:${VERSION}"
"${IMAGE}:${VERSION}-production"
"${IMAGE}:${MAJOR_MINOR}"
"${IMAGE}:${MAJOR}"
"${IMAGE}:latest"
)
for target in "${manifest_tags[@]}"; do
echo "Publishing multi-arch manifest ${target}"
docker buildx imagetools create \
--tag "${target}" \
"${amd64_image}" \
"${arm64_image}"
done