Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .github/release-drafter.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: metal-stack component release

on:
pull_request:
branches:
- master
release:
types:
- published
push:
branches:
- master

jobs:
draft:
uses: metal-stack/actions-common/.github/workflows/release-drafter.yaml@v1

go-build:
uses: metal-stack/actions-common/.github/workflows/go-build.yaml@v1
secrets: inherit
with:
build-command: make build
59 changes: 0 additions & 59 deletions .github/workflows/docker.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/release-drafter.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions CONTRIBUTING.md

This file was deleted.

10 changes: 2 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
FROM golang:1.24-bookworm AS builder

WORKDIR /work
COPY . .
RUN make all

FROM gcr.io/distroless/static-debian12
COPY --from=builder /work/bin/metal-image-cache-sync /metal-image-cache-sync
FROM gcr.io/distroless/static-debian13
COPY bin/metal-image-cache-sync /metal-image-cache-sync
CMD ["/metal-image-cache-sync"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/metal-stack/metal-image-cache-sync

go 1.24.0
go 1.26

require (
github.com/Masterminds/semver/v3 v3.3.1
Expand Down