Skip to content

(Automatic) Release Python, Rust & Github #51

(Automatic) Release Python, Rust & Github

(Automatic) Release Python, Rust & Github #51

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
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
call-release-docker-workflow:
name: _Release 5 - Publish Docker Images to Docker Hub
uses: ./.github/workflows/_release_docker.yml
with:
version: ${{ inputs.base }}

Check failure on line 39 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: 39, Col: 16): Invalid input, version is not defined in the referenced workflow.
secrets: inherit