Skip to content

chore(release): 0.2.9 #65

chore(release): 0.2.9

chore(release): 0.2.9 #65

Workflow file for this run

name: Release obsidian plugin
on:
workflow_dispatch:
inputs:
bump:
default: false
description: "Bump version based on semantic release"
type: boolean
required: false
beta:
default: false
description: "Make a beta release"
type: boolean
required: false
push:
tags:
- "*"
permissions:
contents: write
jobs:
release:
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && !inputs.bump)
uses: mara-li/reusable-workflows/.github/workflows/obsidian-plugin-release.yaml@main
with:
PLUGIN_NAME: "enhanced-copy"
STYLE: true

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

View workflow run for this annotation

GitHub Actions / Release obsidian plugin

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yaml (Line: 26, Col: 16): Invalid input, STYLE is not defined in the referenced workflow.
CACHE: pnpm
secrets:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
bump-version:
if: ${{ inputs.bump }}
uses: mara-li/reusable-workflows/.github/workflows/obsidian-plugin-bump-version.yaml@main
with:
PLUGIN_NAME: "enhanced-copy"
STYLE: true
BETA: ${{ inputs.beta }}
secrets:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}