Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
add input prerelease on workflow_dispatch (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
yakkle authored Sep 16, 2021
1 parent ada02d3 commit dc1bb52
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
description: 'github release tag'
required: true
default: '20210826'
pre_release:
description: 'pre release'
required: true
default: 'false'
jobs:
release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -96,7 +100,7 @@ jobs:
file: ${{ format('{0}/*', env.ASSETS_DIR) }}
file_glob: true
release_name: Release ${{ env.RELEASE_TAG }}
# prerelease: true
prerelease: ${{ github.event.inputs.pre_release == 'true' }}
overwrite: true
body: |
${{ env.PACKAGE_INFO_BODY }}

0 comments on commit dc1bb52

Please sign in to comment.