Create Release #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a draft release and build and upload all installers to it. | |
name: Create Release | |
on: | |
workflow_dispatch: | |
inputs: | |
commitish_to_release: | |
type: string | |
description: 'Enter commit hash or branch to release (default: main).' | |
default: "main" | |
jobs: | |
create-release: | |
uses: MannLabs/alphashared/.github/workflows/create_release.yml@v1 | |
secrets: inherit | |
permissions: | |
contents: write | |
with: | |
package_name: directlfq | |
commitish_to_release: ${{ inputs.commitish_to_release }} | |
python_version: 3.9 | |
test_app: false |