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 041327e commit 73c9531Copy full SHA for 73c9531
.github/workflows/autorelease.yaml
@@ -23,3 +23,9 @@ jobs:
23
body: ${{ env.RELEASE_NOTES }}
24
tag_name: ${{ env.RELEASE_TAG }}
25
name: ${{ env.RELEASE_TAG }}
26
+ - name: Trigger Go proxy cache refresh
27
+ run: |
28
+ LATEST_SDK_TAG=$(curl -sSfL https://api.github.com/repos/mongodb/atlas-sdk-go/releases/latest | jq -r '.tag_name')
29
+ LATEST_SDK_RELEASE=$(echo "${LATEST_SDK_TAG}" | cut -d '.' -f 1)
30
+ echo "tag: ${LATEST_SDK_TAG}, release: ${LATEST_SDK_RELEASE}"
31
+ curl -sSfL "https://proxy.golang.org/go.mongodb.org/atlas-sdk/${LATEST_SDK_RELEASE}/@v/${LATEST_SDK_TAG}.info"
0 commit comments