Skip to content

Build and Release

Build and Release #2

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
environment: release
permissions:
contents: write
pull-requests: read
id-token: write
uses: ./.github/workflows/ci.yml

Check failure on line 28 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Build and Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 28, Col: 5): Unexpected value 'uses' .github/workflows/release.yml (Line: 30, Col: 5): Unexpected value 'with'
if: contains('["dwoz", "twangboy", "dmurphy18"]', github.actor)
with:
kind: "${{ inputs.kind }}"
package_command: "${{ inputs.package_command }}"