Skip to content

Commit

Permalink
Merge pull request #12 from kraken-iac/cicd
Browse files Browse the repository at this point in the history
Add GitHub Actions Workflows
  • Loading branch information
eoinfennessy committed Mar 23, 2024
2 parents 1908b13 + 514a021 commit 1991609
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Build and Publish Controller Image

on:
push:
branches:
- main
- "release-*"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

env:
MAIN_BRANCH_NAME: main

jobs:
build:
name: Build and Publish Controller Image
runs-on: ubuntu-latest
outputs:
sha_short: ${{ steps.vars.outputs.sha_short }}
controller_image: ${{ steps.vars.outputs.base_image }}:${{ steps.vars.outputs.sha_short }}
steps:
- uses: actions/checkout@v4

- name: Calculate vars
id: vars
run: |
echo "sha_short=$(echo ${{ github.sha }} | cut -b -7)" >> $GITHUB_OUTPUT
echo "base_image=${{ vars.IMG_REGISTRY_HOST }}/${{ vars.IMG_REGISTRY_ORG }}/${{ vars.IMG_REGISTRY_REPO }}" >> $GITHUB_OUTPUT
- name: Add image tags
id: add-tags
run: echo "IMG_TAGS=${{ steps.vars.outputs.base_image }}:${{ steps.vars.outputs.sha_short }},${{ steps.vars.outputs.base_image }}:${{ github.ref_name }}" >> $GITHUB_ENV

- name: Add latest tag
if: ${{ github.ref_name == env.MAIN_BRANCH_NAME }}
id: add-latest-tag
run: echo "IMG_TAGS=${{ steps.vars.outputs.base_image }}:latest,${{ env.IMG_TAGS }}" >> $GITHUB_ENV

- name: Login to image registry
uses: docker/login-action@v3
id: registry-login
with:
registry: ${{ vars.IMG_REGISTRY_HOST }}
username: ${{ secrets.IMG_REGISTRY_USERNAME }}
password: ${{ secrets.IMG_REGISTRY_TOKEN }}

- name: Build and push Controller Image
id: build-and-push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ env.IMG_TAGS }}

- name: Print Image URL
run: |
echo "Image pushed to ${{ env.IMG_TAGS }}"
echo "Image digest: ${{ steps.build-and-push.outputs.digest }}"
18 changes: 18 additions & 0 deletions .github/workflows/test-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run Tests on PRs

on:
pull_request:
branches:
- main

jobs:
test:
name: Run All Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.20
- name: Run Tests
run: make test

0 comments on commit 1991609

Please sign in to comment.