mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
31b9f9d235
* Fix yaml identation * Fix the rest of the yamls
31 lines
1017 B
YAML
31 lines
1017 B
YAML
name: Create or update GitHub release
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
description: Needs to match, exactly, the name of a milestone (NO v prefix)
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: "Generate token"
|
|
id: generate_token
|
|
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
|
|
with:
|
|
app_id: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_ID }}
|
|
private_key: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_PEM }}
|
|
- name: Run github release action
|
|
uses: ./actions/github-release
|
|
with:
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|