Skip to content

Commit 1fdfd3d

Browse files
committed
use insights-semantic-release-github-app for release tagging
1 parent f299cb7 commit 1fdfd3d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/semantic-release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,15 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
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 }}
1218
- uses: actions/checkout@v4
1319
with:
14-
token: ${{ secrets.VMAAS_BOT_TOKEN }}
20+
token: "${{ steps.app-token.outputs.token }}"
1521
- name: increment version, commit, push
1622
run: |
1723
DOC_FILE="docs/v3/openapi.json docs/admin/openapi.json"

0 commit comments

Comments
 (0)