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.
2 parents 450e528 + b643cd3 commit d490392Copy full SHA for d490392
.github/workflows/release.yaml
@@ -94,6 +94,26 @@ jobs:
94
});
95
console.log(response);
96
97
+ - name: Trigger cli-docs workflow
98
+ uses: actions/github-script@v7
99
+ continue-on-error: true
100
+ with:
101
+ github-token: ${{ secrets.GH_ACCESS_TOKEN }}
102
+ script: |
103
+ const version = '${{ steps.get_version.outputs.release_version }}';
104
+ const ref = '${{ github.ref }}';
105
+ const response = await github.rest.actions.createWorkflowDispatch({
106
+ owner: 'loft-sh',
107
+ repo: 'vcluster-docs',
108
+ workflow_id: 'cluster-docs.yaml',
109
+ ref: 'main',
110
+ inputs: {
111
+ version,
112
+ ref,
113
+ }
114
+ });
115
+ console.log(response);
116
+
117
publish-chart:
118
if: startsWith(github.ref, 'refs/tags/v') == true
119
needs: [publish]
0 commit comments