This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
131 lines (117 loc) · 4.46 KB
/
docker-builds.yaml
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
name: Docker builds - manual and tagged
on:
workflow_dispatch:
inputs:
image_tag:
description: "Image Tag value"
type: "string"
required: true
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+-?[a-zA-Z]*'
- '[0-9]+.[0-9]+.[0-9]+'
- '!bwsm-eso-provider-*'
paths:
- src/**
jobs:
docker-image-build:
environment: 'dockerhub'
env:
DOCKER_IMAGE_NAME: bojanraic/bwsm-eso
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PAT: ${{ secrets.DOCKERHUB_PAT }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Code Checkout
uses: actions/checkout@v4
- name: Dockerhub Login
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ env.DOCKERHUB_PAT }}
- name: QEMU Setup
uses: docker/setup-qemu-action@v3
- name: Docker Buildx Setup
uses: docker/setup-buildx-action@v3
- name: Manual Build/Push - amd64
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@v5
with:
context: src
push: true
provenance: false
platforms: linux/amd64
build-args: |
BWS_DL_ARCH=x86_64
tags: |
${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.image_tag }}-amd64
- name: Manual Build/Push - arm64
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@v5
with:
context: src
push: true
provenance: false
platforms: linux/arm64
build-args: |
BWS_DL_ARCH=aarch64
tags: |
${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.image_tag }}-arm64
- name: Push Multiplatform Manual Image Manifest
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: Noelware/docker-manifest-action@master
with:
inputs: ${{ env.DOCKER_IMAGE_NAME }}:latest, ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.image_tag }}
images: ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.image_tag }}-amd64, ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.image_tag }}-arm64
push: true
- name: Tagged Build/Push - amd64
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: docker/build-push-action@v5
with:
context: src
push: true
provenance: false
platforms: linux/amd64
build-args: |
BWS_DL_ARCH=x86_64
tags: |
bojanraic/bwsm-eso:${{ github.ref_name }}-amd64
- name: Tagged Build/Push - arm64
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: docker/build-push-action@v5
with:
context: src
push: true
provenance: false
platforms: linux/arm64
build-args: |
BWS_DL_ARCH=aarch64
tags: |
bojanraic/bwsm-eso:${{ github.ref_name }}-arm64
- name: Tagged Release
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
name: v${{ github.ref_name }}
- name: Push Multiplatform Tagged Image Manifest
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: Noelware/docker-manifest-action@master
with:
inputs: ${{ env.DOCKER_IMAGE_NAME }}:latest, ${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}
images: ${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-amd64, ${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-arm64
push: true
- name: Cleanup Internediate Images
run: |
REPO=${{ env.DOCKER_IMAGE_NAME }}
DH_USER=${{ env.DOCKERHUB_USERNAME }}
DH_PASS=${{ env.DOCKERHUB_PAT }}
JWT=$(curl -s -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d "{\"username\":\"${DH_USER}\",\"password\":\"${DH_PASS}\"}" -L 'https://hub.docker.com/v2/users/login' | jq -r '.token')
tags=$(curl -s -L "https://hub.docker.com/v2/repositories/${REPO}/tags?page_size=1024" | jq -r ".results[].name" | grep -E "\-arm64|\-amd64")
# Iterate over tags
for tag in $tags; do
echo "Deleting intermediate tag: $tag"
curl -s "https://hub.docker.com/v2/repositories/${REPO}/tags/${tag}" -X DELETE -H "Authorization: JWT ${JWT}"
done