We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c33752 commit a29c151Copy full SHA for a29c151
.github/workflows/docker.yaml
@@ -36,7 +36,7 @@ jobs:
36
contents: read
37
packages: write
38
outputs:
39
- image-uri: ghcr.io/${{ github.repository }}@${{ steps.build.outputs.digest }}
+ image-uri: ghcr.io/${{ github.repository }}:${{ github.ref_name }}@${{ steps.build.outputs.digest }}
40
steps:
41
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42
- id: go-version
@@ -70,6 +70,14 @@ jobs:
70
linux/amd64
71
linux/arm64
72
73
+ release:
74
+ needs: build
75
+ uses: int128/kubebuilder-workflows/.github/workflows/release.yaml@e4ad31a438f188f70bde87827a8dbe466e623dea # v1.5.0
76
+ permissions:
77
+ contents: write
78
+ with:
79
+ controller-image: ${{ needs.build.outputs.image-uri }}
80
+
81
e2e-test:
82
runs-on: ubuntu-latest
83
timeout-minutes: 10
.github/workflows/release.yaml
0 commit comments