Skip to content

Build and Release

Build and Release #123

Workflow file for this run

name: Build and Release
on:
workflow_dispatch:
inputs:
kind:
required: false
type: string
default: dev
package_command:
required: false
type: string
description: Command used to build python package
default: >-
python -m
build
--wheel
--outdir dist/
jobs:
ci:
name: CI
permissions:
contents: write
pull-requests: read
id-token: write
uses: ./.github/workflows/ci.yml
if: contains('["dwoz", "twangboy", "dmurhpy18"]', github.actor)
with:
kind: "${{ inputs.kind }}"
package_command: "${{ inputs.package_command }}"