Skip to content

fix: gate hibernate completion on vk lifecycle signal; preserve resto… #103

fix: gate hibernate completion on vk lifecycle signal; preserve resto…

fix: gate hibernate completion on vk lifecycle signal; preserve resto… #103

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- 'deploy/**'
- '*.md'
- 'LICENSE'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Download dependencies
run: go mod download
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: make build
- name: Upload binary artifact
uses: actions/upload-artifact@v6
with:
name: cocoon-operator-${{ matrix.goos }}-${{ matrix.goarch }}
path: cocoon-operator-${{ matrix.goos }}-${{ matrix.goarch }}
retention-days: 30