mirror of
https://github.com/clastix/kamaji.git
synced 2026-08-26 00:47:20 +00:00
32 lines
1012 B
YAML
32 lines
1012 B
YAML
name: Container image build
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- edge-*
|
|
- v*
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
ko:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: "ko: install"
|
|
run: make ko
|
|
- name: "ko: login to quay.io container registry"
|
|
run: ./bin/ko login quay.io -u ${{ secrets.QUAY_IO_USERNAME }} -p ${{ secrets.QUAY_IO_TOKEN }}
|
|
- name: "ko: login to docker.io container registry"
|
|
run: ./bin/ko login docker.io -u ${{ secrets.DOCKER_IO_USERNAME }} -p ${{ secrets.DOCKER_IO_TOKEN }}
|
|
- name: "ko: build and push tag"
|
|
run: make VERSION=${{ github.ref_name }} KO_LOCAL=false KO_PUSH=true build
|
|
if: startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/edge-')
|
|
- name: "ko: build and push latest"
|
|
run: make VERSION=latest KO_LOCAL=false KO_PUSH=true build
|