mirror of
https://github.com/clastix/kamaji.git
synced 2026-02-14 18:10:03 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Container image build
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- edge-*
|
|
- v*
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "Tag to build"
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
ko:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
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.event.inputs.tag }} KO_LOCAL=false KO_PUSH=true build
|
|
if: github.event_name == 'workflow_dispatch'
|
|
- name: "ko: build and push latest"
|
|
run: make VERSION=latest KO_LOCAL=false KO_PUSH=true build
|