Fix/fix polling of parametrization entries (#984) #309
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
name: "Build Package" | |
on: | |
# Trigger the workflow on push only for the main branch | |
push: | |
branches: | |
- main | |
jobs: | |
build-package: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
security-events: write | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v3 | |
- run: pip install --upgrade bumpver | |
- run: bumpver update --no-commit | |
- uses: ./.github/actions/build-package | |
with: | |
is_dev_build: true | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
dist/testplan-*-py3-none-any.whl |