Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit c297375

Browse files
committed
Container publish workflow
1 parent 8963c3a commit c297375

File tree

3 files changed

+819
-1
lines changed

3 files changed

+819
-1
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish Docker Image
2+
3+
on:
4+
# Trigger on push
5+
push:
6+
# Trigger on all pull requests
7+
pull_request:
8+
# Trigger when a release is published
9+
release:
10+
types: ['published']
11+
12+
jobs:
13+
publish-container-image:
14+
permissions:
15+
id-token: write
16+
contents: read
17+
packages: write
18+
attestations: write
19+
uses: datum-cloud/actions/.github/workflows/publish-docker.yaml@v1.5.1
20+
with:
21+
image-name: galactic-operator
22+
secrets: inherit

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Image URL to use all building/pushing image targets
2-
IMG ?= controller:latest
2+
IMG ?= ghcr.io/datum-cloud/galactic-operator:latest
33

44
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
55
ifeq (,$(shell go env GOBIN))

0 commit comments

Comments
 (0)