forked from PlanetaryOrbit/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (64 loc) · 2.17 KB
/
Copy pathbuild.yml
File metadata and controls
74 lines (64 loc) · 2.17 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
name: Build and Push Orbit Image
on:
workflow_dispatch:
inputs:
tag:
description: "Docker / Git tag to release (e.g. 2.1.4beta1)"
required: true
type: string
env:
REGISTRY: ghcr.io
IMAGE_NAME: planetaryorbit/orbit
jobs:
build-and-push:
runs-on: self-hosted
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.GH_USER }}
password: ${{ secrets.GH_PAT }}
- name: Validate tag
run: |
TAG="${{ github.event.inputs.tag }}"
if [[ -z "$TAG" ]]; then
echo "❌ Tag is required"
exit 1
fi
echo "🚀 Releasing tag: $TAG"
# Build ARM64
- name: Build and push ARM64 image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }}-arm64
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
build-args: |
NODE_OPTIONS=--max-old-space-size=4096
cache-from: type=gha,scope=arm64
cache-to: type=gha,mode=max,scope=arm64
- name: Summary
run: |
TAG="${{ github.event.inputs.tag }}"
echo "## 🎉 Build Successful!" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### 📦 Image Tags" >> $GITHUB_STEP_SUMMARY
echo "- \`ghcr.io/planetaryorbit/orbit:${TAG}-arm64\`" >> $GITHUB_STEP_SUMMARY
echo "- \`ghcr.io/planetaryorbit/orbit:${TAG}\`" >> $GITHUB_STEP_SUMMARY
echo "- \`ghcr.io/planetaryorbit/orbit:latest\`" >> $GITHUB_STEP_SUMMARY