Skip to content

(Manual) Release Github #5

(Manual) Release Github

(Manual) Release Github #5

name: (Manual) Release Rust
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