The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/build/actions/bump-version/action.yml

20 lines
594 B

name: Bump version
description: Updates package.json versions in Grafana and subpackages and regenerates schemas
inputs:
version:
description: The new version (ex. 1.2.3)
required: true
runs:
using: "composite"
steps:
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Bump versions
uses: dagger/dagger-for-github@e47aba410ef9bb9ed81a4d2a97df31061e5e842e
with:
verb: run
args: go run ./pkg/build/actions/bump-version -version=${{ inputs.version }}
- name: make gen-cue
shell: bash
run: make gen-cue