Skip to content

Deploy main to dev by @njvrzm #9

Deploy main to dev by @njvrzm

Deploy main to dev by @njvrzm #9

Workflow file for this run

name: Plugins - CD
run-name: Deploy ${{ inputs.branch }} to ${{ inputs.environment }} by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
branch:
description: Branch to publish from. Can be used to deploy PRs to dev
default: main
environment:
description: Environment to publish to
required: true
type: choice
options:
- "dev"
- "ops"
- "prod"
docs-only:
description: Only publish docs, do not publish the plugin
default: false
type: boolean
permissions: {}
jobs:
cd:
name: CD
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@main # zizmor: ignore[unpinned-uses]
permissions:
contents: write
id-token: write
attestations: write
with:
branch: ${{ github.event.inputs.branch }}
environment: ${{ github.event.inputs.environment }}
docs-only: ${{ fromJSON(github.event.inputs.docs-only) }}
scopes: universal
golangci-lint-version: 2.1.6
github-draft-release: false # publish the github release directly, skipping the draft