Release v3.2.2 #14
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@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: build signed | |
id: build-signed | |
uses: ./.github/build/ | |
env: | |
GRAFANA_API_KEY: ${{ secrets.GRAFANA_API_KEY }} | |
with: | |
release: true | |
signed: true | |
- name: Create release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
body: ${{ steps.build-signed.changelog_path }} | |
draft: true | |
artifacts: ${{ steps.build-signed.outputs.plugin_path }},${{ steps.build-signed.outputs.plugin_checksum_path }} | |
- uses: actions/checkout@v3 | |
- name: build unsigned | |
id: build-unsigned | |
uses: ./.github/build/ | |
with: | |
release: true | |
signed: false | |
# TODO: use another action, this is deprecated and generates warnings | |
- name: Add unsigned files to release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ steps.build-unsigned.outputs.plugin_path }} | |
asset_name: ${{ steps.build-unsigned.outputs.plugin_path }} | |
asset_content_type: text/plain | |
# TODO: use another action, this is deprecated and generates warnings | |
- name: Add unsigned files to release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ steps.build-unsigned.outputs.plugin_checksum_path }} | |
asset_name: ${{ steps.build-unsigned.outputs.plugin_checksum_path }} | |
asset_content_type: text/plain | |
- 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> |