Skip to content

Release new plugin version #1

Release new plugin version

Release new plugin version #1

Workflow file for this run

name: "Release new plugin version"
on:
workflow_dispatch:
inputs:
release_version:
description: 'The version to release. The version format is MAJOR.MINOR.PATCH'
required: true
jobs:
Release new plugin version:
runs-on: ubuntu-latest
env:
RELEASE_VERSION: ${{ release_version }}

Check failure on line 14 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release new plugin version

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 14, Col: 24): Unrecognized named-value: 'release_version'. Located at position 1 within expression: release_version
GRADLE_KEY: ${{ secrets.GRADLE_KEY }}
GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
- name: Publish plugin
run: ./gradlew publishPlugins