We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e68ac commit bf65f87Copy full SHA for bf65f87
.github/workflows/publish.yaml
@@ -18,6 +18,21 @@ defaults:
18
shell: bash
19
20
jobs:
21
+ publish-go-module:
22
+ name: Publish go module
23
+ runs-on: ubuntu-24.04
24
+
25
+ steps:
26
+ - name: Trigger registration on sum.golang.org
27
+ run: |
28
+ repository=${{ github.repository }}
29
+ tag=${{ github.event.release.tag_name }}
30
+ curl -sSf \
31
+ --max-time 30 \
32
+ --retry 5 \
33
+ --retry-max-time 300 \
34
+ https://sum.golang.org/lookup/github.com/${repository,,}@${tag}
35
36
publish-docker_controller:
37
name: Publish Docker image (controller)
38
runs-on: ubuntu-24.04
0 commit comments