forked from pleasanthill17/teslamate-abrp
-
Notifications
You must be signed in to change notification settings - Fork 6
63 lines (54 loc) · 1.8 KB
/
build_latest.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
52
53
54
55
56
57
58
59
60
61
62
63
# Build for amd64 and arm64 and publish to DockerHub and GitHub Packages
# Latest release published as :latest
name: :latest
on:
release:
types:
- 'released'
- 'edited'
workflow_dispatch:
jobs:
push_to_registries:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/[email protected]
- name: Setup buildx
uses: docker/[email protected]
- name: Log in to DockerHub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the GitHub Packages container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
fetzu/teslamate-abrp
ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
- name: Build and push Docker images for releases
if: github.event.action == 'released' || github.event.action == 'edited'
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
${{ steps.meta.outputs.tags }},
fetzu/teslamate-abrp:latest,
ghcr.io/${{ github.repository }}:latest
labels: ${{ steps.meta.outputs.labels }}