Deploy main to prod by @joey-grafana #13
Workflow file for this run
This file contains hidden or 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: Plugins Platform Publish - 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@ci-cd-workflows/v10.1.0 | |
| permissions: | |
| contents: write | |
| id-token: write | |
| attestations: write | |
| pull-requests: read | |
| with: | |
| branch: ${{ github.event.inputs.branch }} | |
| environment: ${{ github.event.inputs.environment }} | |
| docs-only: ${{ fromJSON(github.event.inputs.docs-only) }} | |
| run-playwright: false | |
| # Publish the github release automatically, turn draft off | |
| github-draft-release: false | |
| # Use argo workflows, auto merge to dev,ops in deployment tools | |
| grafana-cloud-deployment-type: provisioned | |
| auto-merge-environments: dev,ops | |
| argo-workflow-slack-channel: '#proj-tracesdrilldown-cd' | |
| node-version: '24' |