-
Notifications
You must be signed in to change notification settings - Fork 0
178 lines (173 loc) · 7.94 KB
/
upstream-deploy.yaml
File metadata and controls
178 lines (173 loc) · 7.94 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
---
name: Deploy
# yamllint disable-line rule:truthy
on:
workflow_call:
inputs:
event_name:
description: Event name from the caller
required: true
type: string
release_prerelease:
description: Release prerelease flag from the caller
required: false
type: boolean
release_tag_name:
description: Release tag name from the caller
required: false
type: string
slug:
description: Optional slug override
required: false
type: string
concurrency:
group: deploy
permissions:
contents: read
packages: write
jobs:
information:
if: inputs.event_name == 'release' || inputs.event_name == 'workflow_run'
name: ℹ️ Gather app (add-on) information
runs-on: ubuntu-latest
outputs:
architectures: ${{ steps.information.outputs.architectures }}
build: ${{ steps.information.outputs.build }}
description: ${{ steps.information.outputs.description }}
environment: ${{ steps.release.outputs.environment }}
name: ${{ steps.information.outputs.name }}
slug: ${{ steps.override.outputs.slug }}
target: ${{ steps.information.outputs.target }}
version: ${{ steps.release.outputs.version }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v6
- name: 🚀 Run app (add-on) information action
id: information
uses: homeassistant-apps/action-app-information@b895bf87f1fe6f3250341ee94b5317360a3b2451 # v2
- name: 🚀 Process possible slug override
id: override
run: |
slug="${{ steps.information.outputs.slug }}"
if [[ ! -z "${{ inputs.slug }}" ]]; then
slug="${{ inputs.slug }}"
fi
echo "slug=$slug" >> $GITHUB_OUTPUT
- name: ℹ️ Gather version and environment
id: release
run: |
sha="${{ github.sha }}"
environment="edge"
version="${sha:0:7}"
if [[ "${{ inputs.event_name }}" = "release" ]]; then
version="${{ inputs.release_tag_name }}"
version="${version,,}"
version="${version#v}"
environment="stable"
if [[ "${{ inputs.release_prerelease }}" = "true" ]]; then
environment="beta"
fi
fi
echo "environment=$environment" >> $GITHUB_OUTPUT
echo "version=$version" >> $GITHUB_OUTPUT
deploy:
name: 👷 Build & Deploy ${{ matrix.architecture }}
needs: information
runs-on: ubuntu-latest
strategy:
matrix:
architecture: ${{ fromJson(needs.information.outputs.architectures) }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v6
- name: 🏗 Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: 🏗 Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: ℹ️ Compose build flags
id: flags
run: |
echo "date=$(date +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
if [[ "${{ matrix.architecture }}" = "amd64" ]]; then
echo "platform=linux/amd64" >> $GITHUB_OUTPUT
elif [[ "${{ matrix.architecture }}" = "aarch64" ]]; then
echo "platform=linux/arm64/v8" >> $GITHUB_OUTPUT
else
echo "::error ::Could not determine platform for architecture ${{ matrix.architecture }}"
exit 1
fi
- name: 🔤 Normalize registry owner
id: registry
run: |
owner="${GITHUB_REPOSITORY_OWNER,,}"
echo "owner=$owner" >> "$GITHUB_OUTPUT"
- name: 🏗 Login to GitHub Container Registry
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ steps.registry.outputs.owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🚀 Build
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
load: true
# yamllint disable rule:line-length
tags: |
ghcr.io/${{ steps.registry.outputs.owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}
ghcr.io/${{ steps.registry.outputs.owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ matrix.architecture }}-${{ needs.information.outputs.environment }}
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ matrix.architecture }}-${{ needs.information.outputs.version }}
# yamllint enable rule:line-length
context: ${{ needs.information.outputs.target }}
file: ${{ needs.information.outputs.target }}/Dockerfile
cache-from: type=gha,scope=${{ needs.information.outputs.slug }}-${{ matrix.architecture }}
cache-to: type=gha,mode=max,scope=${{ needs.information.outputs.slug }}-${{ matrix.architecture }}
platforms: ${{ steps.flags.outputs.platform }}
build-args: |
BUILD_ARCH=${{ matrix.architecture }}
BUILD_DATE=${{ steps.flags.outputs.date }}
BUILD_DESCRIPTION=${{ needs.information.outputs.description }}
BUILD_NAME=${{ needs.information.outputs.name }}
BUILD_REF=${{ github.sha }}
BUILD_REPOSITORY=${{ github.repository }}
BUILD_VERSION=${{ needs.information.outputs.version }}
# yamllint disable rule:line-length
- name: 🚀 Push
run: |
docker push \
"ghcr.io/${{ steps.registry.outputs.owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}"
docker push \
"ghcr.io/${{ steps.registry.outputs.owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}"
docker push "ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ matrix.architecture }}-${{ needs.information.outputs.environment }}"
docker push "ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ matrix.architecture }}-${{ needs.information.outputs.version }}"
# yamllint enable rule:line-length
manifest:
name: 📦 Publish multi-arch manifest
needs:
- information
- deploy
runs-on: ubuntu-latest
steps:
- name: 🏗 Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: 🔤 Normalize registry owner
id: registry
run: |
owner="${GITHUB_REPOSITORY_OWNER,,}"
echo "owner=$owner" >> "$GITHUB_OUTPUT"
- name: 🏗 Login to GitHub Container Registry
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ steps.registry.outputs.owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🚀 Create manifest list
run: |
docker buildx imagetools create \
--tag ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ needs.information.outputs.environment }} \
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:amd64-${{ needs.information.outputs.environment }} \
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:aarch64-${{ needs.information.outputs.environment }}
docker buildx imagetools create \
--tag ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:${{ needs.information.outputs.version }} \
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:amd64-${{ needs.information.outputs.version }} \
ghcr.io/${{ steps.registry.outputs.owner }}/cloudflared:aarch64-${{ needs.information.outputs.version }}