-
Notifications
You must be signed in to change notification settings - Fork 93
104 lines (89 loc) · 2.96 KB
/
docker-image.yml
File metadata and controls
104 lines (89 loc) · 2.96 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
name: Build netbox-sync docker image
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
branches:
- development
paths:
- .github/**
- module/**
- netbox-sync.py
- requirements.txt
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Lower case docker image name
id: docker_image
uses: ASzc/change-string-case-action@v6
with:
string: ${{ github.repository }}
- name: set dockerhub repo name
uses: mad9000/actions-find-and-replace-string@5
id: dockerhub_image
with:
source: ${{ steps.docker_image.outputs.lowercase }}
find: 'bb-ricardo'
replace: ${{ vars.DOCKER_HUB_USERNAME }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta GitHub Container Registry
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ steps.docker_image.outputs.lowercase }}
tags: |
type=semver,pattern={{version}}
type=ref,event=branch
- name: Build and push with tags - ${{ steps.meta.outputs.tags }}
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Docker hub meta
id: meta_dhub
uses: docker/metadata-action@v5
with:
images: docker.io/${{ steps.dockerhub_image.outputs.value }}
tags: |
type=semver,pattern={{version}}
type=ref,event=branch
- name: Build and push with tags - ${{ steps.dockerhub_image.outputs.value }}
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta_dhub.outputs.tags }}
labels: ${{ steps.meta_dhub.outputs.labels }}
# - name: push README to Dockerhub
# uses: christian-korneck/update-container-description-action@v1
# env:
# DOCKER_USER: ${{ vars.DOCKER_HUB_USERNAME }}
# DOCKER_PASS: ${{ secrets.DOCKER_HUB_PASSWORD }}
# with:
# destination_container_repo: ${{ steps.dockerhub_image.outputs.value }}
# provider: dockerhub