forked from zalando/tech-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (56 loc) · 1.73 KB
/
build.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
name: Build Container
on:
workflow_dispatch:
inputs:
version:
required: true
description: 'Version string, e.g. 1.2.5:'
concurrency:
cancel-in-progress: false
group: build-docker-images
jobs:
tag_version:
name: Create Tag for Version ${{ github.event.inputs.version }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Create and Push Tag
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git remote add publish "https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}.git"
git fetch publish
git tag "${{ github.event.inputs.version }}"
git push publish --tags
build_container:
name: Build Container (linux/amd64)
runs-on: ubuntu-latest
needs: tag_version
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Dockerhub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
with:
version: latest
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64
context: '.'
tags: |
easybill/techradar:latest
easybill/techradar:${{ github.event.inputs.version }}