-
Notifications
You must be signed in to change notification settings - Fork 15
71 lines (60 loc) · 2.01 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Release
on:
push:
tags:
- 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: build signed
id: build-signed
uses: ./.github/build/
env:
GRAFANA_ACCESS_POLICY_TOKEN: ${{ secrets.GRAFANA_API_KEY }}
with:
release: true
signed: true
- uses: actions/checkout@v4
- name: build unsigned
id: build-unsigned
uses: ./.github/build/
with:
release: true
signed: false
- uses: actions/checkout@v4
- name: download all action artifacs
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Read changelog
shell: bash
run: |
awk '/^## / {s++} s == 1 {print}' CHANGELOG.md > ${{ github.workspace }}-release_notes.md
- name: create release
uses: softprops/action-gh-release@v2
with:
body_path: ${{ github.workspace }}-release_notes.md
draft: true
files: |
${{ steps.build-signed.outputs.plugin_path }}
${{ steps.build-signed.outputs.plugin_checksum_path }}
${{ steps.build-unsigned.outputs.plugin_path }}
${{ steps.build-unsigned.outputs.plugin_checksum_path }}
- uses: adelynx/[email protected]
with:
host: ${{ secrets.NOTIFICATION_SMTP_SERVER }}
port: 465
username: '${{ secrets.NOTIFICATION_SMTP_USER }}'
password: '${{ secrets.NOTIFICATION_SMTP_PASSWORD }}'
from: 'Grafana notifications <${{ secrets.NOTIFICATION_SMTP_USER }}>'
to: '${{ secrets.NOTIFICATION_DESTINATION }}'
subject: '✅ New release of Grafana data source plugin'
body: |
<p>A new release of the Grafana data source plugin has been published!</p>