Skip to content

(Automatic) Release Python, Rust & Github #24

(Automatic) Release Python, Rust & Github

(Automatic) Release Python, Rust & Github #24

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: ${{ github.event.inputs.base }}
dry_run: ${{ github.event.inputs.dry_run }}
secrets: inherit
call-release-python-workflow:
name: _Release 3 - Publish python to pypi
uses: ./.github/workflows/_release_python.yml
with:
base: ${{ github.event.inputs.base }}
dry_run: ${{ github.event.inputs.dry_run }}
secrets: inherit
call-release-github-workflow:
name: _Release 4 - Publish to Github
uses: ./.github/workflows/_release_github.yml

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

View workflow run for this annotation

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

Invalid workflow file

The workflow is not valid. .github/workflows/release_auto.yml (Line: 31, Col: 11): Input base is required, but not provided while calling.
secrets: inherit