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 89cbfcd commit 9af2314Copy full SHA for 9af2314
.github/workflows/release-post-merge.yml
@@ -45,6 +45,16 @@ jobs:
45
echo "version=$version" >> $GITHUB_OUTPUT
46
echo "tag=$tag" >> $GITHUB_OUTPUT
47
48
+ - name: Trigger helm post release workflow
49
+ run: |
50
+ curl \
51
+ -X POST \
52
+ -H "Accept: application/vnd.github+json" \
53
+ -H "Authorization: Bearer ${{ secrets.HELM_REPO_TOKEN }}"\
54
+ -H "X-GitHub-Api-Version: 2022-11-28" \
55
+ https://api.github.com/repos/mongodb/helm-charts/actions/workflows/post-atlas-operator-release.yaml/dispatches \
56
+ -d '{"ref":"main","inputs":{"version":"'"${{ steps.tag.outputs.version }}"'"}}'
57
+
58
- name: Check out code into the Go module directory
59
uses: actions/checkout@v3.1.0
60
with:
0 commit comments