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 27279f5 commit d0c84d5Copy full SHA for d0c84d5
.github/workflows/release-image.yml
@@ -320,7 +320,18 @@ jobs:
320
set -x
321
tar czvf atlas-operator-all-in-one-${{ env.VERSION }}.tar.gz -C releases/${{ env.RELEASE_TAG }}/deploy all-in-one.yaml
322
323
+ - name: Generate GitHub App Token
324
+ id: generate_token
325
+ uses: actions/create-github-app-token@v2
326
+ with:
327
+ app-id: ${{ secrets.AKO_RELEASER_APP_ID }}
328
+ private-key: ${{ secrets.AKO_RELEASER_RSA_KEY }}
329
+ owner: ${{ github.repository_owner }}
330
+ repositories: mongodb-atlas-kubernetes
331
+
332
- name: Tag the release assets
333
+ env:
334
+ GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
335
run: |
336
git fetch --tags
337
git tag -f ${{ env.RELEASE_TAG }} ${{ needs.image2commit.outputs.commit_sha }}
0 commit comments