-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (38 loc) · 1.33 KB
/
cd.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
name: Continous Deployment
on:
push:
tags:
- "v*.*.*"
jobs:
build_and_push:
runs-on: ubuntu-latest
name: Build and push new image to container registries
permissions: # Permissions for GITHUB_TOKEN
contents: read
packages: write
steps:
- name: Login to dockerhub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
username: bl4ko
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to ghcr.io
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
registry: ghcr.io
username: bl4ko
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
- name: Build and push final image
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
with:
platforms: linux/amd64,linux/arm64
tags: |
bl4ko/homepage:latest
bl4ko/homepage:${{ github.ref_name }}
ghcr.io/bl4ko/homepage:latest
ghcr.io/bl4ko/homepage:${{ github.ref_name }}
push: true