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 941108b + 172ab3c commit cfcabf3Copy full SHA for cfcabf3
1 file changed
.github/workflows/release.yaml
@@ -88,3 +88,25 @@ jobs:
88
tag_name: ${{ github.event.inputs.tag }}
89
generate_release_notes: true
90
target_commitish: ${{ github.sha }}
91
+
92
+ trigger-kms-release:
93
+ runs-on: ubuntu-latest
94
+ needs: release
95
+ if: github.repository_owner == 'scality'
96
+ steps:
97
+ - name: Generate GitHub App Token
98
+ uses: actions/create-github-app-token@v1
99
+ id: app-token
100
+ with:
101
+ app-id: ${{ vars.ACTIONS_APP_ID }}
102
+ private-key: ${{ secrets.ACTIONS_APP_PRIVATE_KEY }}
103
+ owner: ${{ github.repository_owner }}
104
105
+ - name: Trigger scality-kms release workflow
106
+ env:
107
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
108
+ run: |
109
+ gh workflow run release.yaml \
110
+ --repo scality/scality-kms \
111
+ --ref main \
112
+ --field tag=${{ github.event.inputs.tag }}
0 commit comments