-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.35 KB
/
build-publish.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
name: Build and Publish
on:
push:
permissions:
contents: write
packages: write
pull-requests: write
jobs:
build-and-push-docker-image:
name: Build Docker image and push to repositories
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
release-type: simple
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Setup ko
uses: ko-build/setup-ko@v0.6
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build containers
run: |
git fetch --tags
descr=$(git describe --tags --always)
short=$(git describe --tags --always --abbrev=0)
export version="${descr#v}"
if [[ $descr == $short ]]; then
minor="${version%.*}"
major="${version%%.*}"
tags=(-t edge -t latest -t "$version" -t "$minor" -t "$major")
else
tags=(-t edge)
fi
ko build --bare --sbom=none "${tags[@]}" .
env:
KO_DOCKER_REPO: ghcr.io/kastelo/ezapt