Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SAP/cf-service-operator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b4e6bed9e4f0c8642a96c3b549bb0d01dab12e5c
Choose a base ref
..
head repository: SAP/cf-service-operator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a71a8ae18017f16fd0551e0f24196d18b908e1f1
Choose a head ref
Showing with 15 additions and 0 deletions.
  1. +15 −0 .github/workflows/publish.yaml
15 changes: 15 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -18,6 +18,21 @@ defaults:
shell: bash

jobs:
publish-go-module:
name: Publish go module
runs-on: ubuntu-24.04

steps:
- name: Trigger registration on sum.golang.org
run: |
repository=${{ github.repository }}
tag=${{ github.event.release.tag_name }}
curl -sSf \
--max-time 30 \
--retry 5 \
--retry-max-time 300 \
https://sum.golang.org/lookup/github.com/${repository,,}@${tag}
publish-docker:
name: Publish Docker image
runs-on: ubuntu-24.04