We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f299cb7 commit 234839dCopy full SHA for 234839d
1 file changed
.github/workflows/semantic-release.yml
@@ -9,9 +9,15 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
+ - name: Generate token
13
+ id: app-token
14
+ uses: actions/create-github-app-token@v1
15
+ with:
16
+ app-id: ${{ secrets.SEMANTIC_RELEASE_APP_ID }}
17
+ private-key: ${{ secrets.SEMANTIC_RELEASE_PK }}
18
- uses: actions/checkout@v4
19
with:
- token: ${{ secrets.VMAAS_BOT_TOKEN }}
20
+ token: "${{ steps.app-token.outputs.token }}"
21
- name: increment version, commit, push
22
run: |
23
DOC_FILE="docs/v3/openapi.json docs/admin/openapi.json"
0 commit comments