5 Commits

Author SHA1 Message Date
b792c4cb55 upgrade go version for build
All checks were successful
Build and Publish / check-chart (push) Successful in 1m33s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / container-images (push) Successful in 1m53s
Build and Publish / go-binaries (push) Successful in 3m41s
2025-08-02 11:35:50 -04:00
3f93896f52 hf: add checkout to container image workflow
All checks were successful
Build and Publish / check-chart (push) Successful in 14s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / go-binaries (push) Successful in 2m18s
Build and Publish / container-images (push) Successful in 2m19s
2025-07-28 17:11:30 -04:00
6c1f325b8c Merge pull request 'split build jobs' (#2) from development into main
Some checks failed
Build and Publish / check-chart (push) Successful in 12s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / container-images (push) Failing after 53s
Build and Publish / go-binaries (push) Successful in 2m17s
Reviewed-on: #2
2025-07-28 21:08:52 +00:00
e7f11d7d33 Merge branch 'main' into development 2025-07-28 17:08:08 -04:00
f0349e9fa5 split build jobs 2025-07-28 17:06:26 -04:00

View File

@ -20,7 +20,7 @@ env:
CHART_DIR: helm/ CHART_DIR: helm/
jobs: jobs:
release: go-binaries:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') # Only run on tag push if: startsWith(github.ref, 'refs/tags/v') # Only run on tag push
steps: steps:
@ -30,7 +30,7 @@ jobs:
- name: Set up Go Environment - name: Set up Go Environment
uses: actions/setup-go@v4 uses: actions/setup-go@v4
with: with:
go-version: '1.23' go-version: '1.24'
- name: Build Binary - name: Build Binary
run: make build run: make build
@ -67,6 +67,13 @@ jobs:
exit 1 exit 1
fi fi
container-images:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') # Only run on tag push
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3