We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2506898 commit 6b7f6c1Copy full SHA for 6b7f6c1
.github/workflows/auto-release.yml
@@ -0,0 +1,29 @@
1
+name: Releases
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ steps:
15
+ - name: GitHub App token
16
+ id: github_app_token
17
+ uses: tibdex/github-app-token@v1.5.0
18
+ with:
19
+ app_id: ${{ secrets.APP_ID }}
20
+ private_key: ${{ secrets.APP_PRIVATE_KEY }}
21
+ installation_id: 22958780
22
+ - name: Get tag
23
+ id: tag
24
+ uses: dawidd6/action-get-tag@v1
25
+ - uses: actions/checkout@v2
26
+ - uses: ncipollo/release-action@v1
27
28
+ github_token: ${{ steps.github_app_token.outputs.token }}
29
+ bodyFile: release-notes/opensearch-security-dashboards-plugin.release-notes-${{steps.tag.outputs.tag}}.md
0 commit comments