Skip to content

Commit 3d77fe5

Browse files
committed
Custom busybox and registry windows images
Signed-off-by: apostasie <[email protected]>
1 parent ab704e9 commit 3d77fe5

File tree

9 files changed

+269
-716
lines changed

9 files changed

+269
-716
lines changed

.github/workflows/common.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: common
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
config-path:
7+
required: true
8+
type: string
9+
outputs:
10+
GO_VERSION:
11+
description: "The first output string"
12+
value: ${{ jobs.environment.outputs.output_go }}
13+
REGISTRY_SERVER:
14+
description: "The second output string"
15+
value: ${{ jobs.environment.outputs.output_registry }}
16+
jobs:
17+
environment:
18+
env:
19+
GO_VERSION: 1.23.x
20+
REGISTRY_SERVER: ghcr.io
21+
BUSYBOX_VERSION: 5ad83957fa74aafd061afbfb8da14ce3220659a9
22+
REGISTRY_VERSION: v2.8.3
23+
CURL_VERSION: 8.11.0_4
24+
runs-on: ubuntu-24.04
25+
steps:
26+
- id: go
27+
run: echo "GO_VERSION=$GO_VERSION" >> $GITHUB_OUTPUT
28+
- id: registry
29+
run: echo "REGISTRY_SERVER=$REGISTRY_SERVER" >> $GITHUB_OUTPUT
30+
outputs:
31+
output_go: ${{ steps.go.outputs.GO_VERSION }}
32+
output_registry: ${{ steps.registry.outputs.REGISTRY_SERVER }}
33+

.github/workflows/ghcr-image-build-and-publish.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.github/workflows/project.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/test-canary.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)