File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 8888 tag_name : ${{ github.event.inputs.tag }}
8989 generate_release_notes : true
9090 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 }}
You can’t perform that action at this time.
0 commit comments