Skip to content

Deploy main to prod by @itsmylife #1

Deploy main to prod by @itsmylife

Deploy main to prod by @itsmylife #1

Workflow file for this run

name: Plugins - CD
run-name: Deploy ${{ inputs.branch }} to ${{ inputs.environment }} by @${{ github.actor }}
permissions:
contents: read
id-token: write
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
jobs:
cd:

Check failure on line 27 in .github/workflows/publish.yaml

View workflow run for this annotation

GitHub Actions / Plugins - CD

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yaml (Line: 27, Col: 3): Error calling workflow 'grafana/plugin-ci-workflows/.github/workflows/cd.yml@main'. The workflow is requesting 'attestations: write, contents: write', but is only allowed 'attestations: none, contents: read'.
name: CD
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@main
with:
golangci-lint-version: '1.64.6'
branch: ${{ github.event.inputs.branch }}
environment: ${{ github.event.inputs.environment }}
docs-only: ${{ fromJSON(github.event.inputs.docs-only) }}
run-playwright: true