Skip to content

(Automatic) Release Python, Rust & Github #38

(Automatic) Release Python, Rust & Github

(Automatic) Release Python, Rust & Github #38

Workflow file for this run

name: (Automatic) Release Python, Rust & Github
on:
workflow_dispatch:
inputs:
base:
description: 'Name of branch to open PR against'
type: 'string'
default: 'master'
dry_run:
description: 'DRY RUN: If true will not publish the release to pypi/crates but will release to github'
type: boolean
default: false
jobs:
call-release-rust-workflow:
name: _Release 2 - Publish Rust package to crates.io
uses: ./.github/workflows/_release_rust.yml
with:
base: ${{ inputs.base }}
dry_run: ${{ inputs.dry_run == true }}
secrets: inherit
call-release-python-workflow:
name: _Release 3 - Publish python to pypi
uses: ./.github/workflows/_release_python.yml

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

View workflow run for this annotation

GitHub Actions / (Automatic) Release Python, Rust & Github

Invalid workflow file

error parsing called workflow ".github/workflows/release_auto.yml" -> "./.github/workflows/_release_python.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
base: ${{ inputs.base }}
dry_run: ${{ inputs.dry_run == true }}
secrets: inherit
call-release-github-workflow:
name: _Release 4 - Publish to Github
uses: ./.github/workflows/_release_github.yml
with:
base: ${{ inputs.base }}
secrets: inherit