Skip to content

Merge pull request #431 from kurator-bot/cherry-pick-425-to-release-0.5 #1

Merge pull request #431 from kurator-bot/cherry-pick-425-to-release-0.5

Merge pull request #431 from kurator-bot/cherry-pick-425-to-release-0.5 #1

Workflow file for this run

name: Build and Push Images
on:
push:
tags:
- 'v*.*.*'
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Compile
run: make build
- name: Build Docker Image
# Use version tag
run: VERSION=${{ github.ref_name }} make docker
- name: Login to ghcr.io
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GH_PAT }}" | docker login ghcr.io -u $ --password-stdin
- name: Push Docker Image
run: VERSION=${{ github.ref_name }} make docker-push