Skip to content

chore: bump version to 0.3.2 #64

chore: bump version to 0.3.2

chore: bump version to 0.3.2 #64

Workflow file for this run

name: Release to PyPI
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
inputs:
version:
description: 'Version to release (e.g., 0.1.0, 1.0.0) - Leave empty to use tag'
required: false
type: string
prerelease:
description: 'Mark as pre-release?'
required: true
type: boolean
default: true
permissions:
contents: write
jobs:
release:
uses: masorange/masorange-gh-actions/.github/workflows/titan-cli-release.yml@master

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "masorange/masorange-gh-actions/.github/workflows/titan-cli-release.yml@master" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
version: ${{ inputs.version || '' }}
prerelease: ${{ inputs.prerelease || false }}
event_name: ${{ github.event_name }}
ref: ${{ github.ref }}
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}