Forgot to update package.json #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/github-actions-nodemailer@v1.0.3 | |
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> |