Skip to content

Commit

Permalink
Merge pull request #144 from jwcesign/main
Browse files Browse the repository at this point in the history
ci: add release image build
  • Loading branch information
jwcesign authored Nov 22, 2024
2 parents bf3adf9 + 051ffd3 commit e8ab848
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Release image build

on:
# Trigger on workflow_dispatch (manual trigger)
workflow_dispatch:
inputs:
tag:
description: 'Tag to build (e.g., v1.0.0)'
required: false
# Trigger on push for new tags
push:
tags:
- '*'

jobs:
image-publish:
runs-on: ubuntu-latest
steps:
- name: Set tag from inputs or Git tag
id: set-tag
run: |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
echo "tag=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
elif [ "${{ github.event_name }}" == "push" ]; then
echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
else
echo "No valid trigger for building an image."
exit 1
fi
shell: bash

- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/setup-go@v5
with:
go-version: '1.23'
cache: false

- name: Config env
run: |
echo "AWS_ACCESS_KEY_ID=${{ secrets.AWS_AK }}" >> $GITHUB_ENV
echo "AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SK }}" >> $GITHUB_ENV
echo "AWS_DEFAULT_REGION=us-east-2" >> $GITHUB_ENV
- name: AWS CLI Init
uses: unfor19/install-aws-cli-action@v1

- name: Config ECR
run: |
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/cloudpilotai
- uses: ko-build/setup-ko@v0.6

- name: Build and publish image
run: |
export KO_DOCKER_REPO=public.ecr.aws/cloudpilotai/alibabacloud/karpenter
export IMAGE_TAG=${{ env.tag }}
ko build --bare github.com/cloudpilot-ai/karpenter-provider-alibabacloud/cmd/controller -t $IMAGE_TAG

0 comments on commit e8ab848

Please sign in to comment.