Version bump to 0.5.22 (#1009) #70
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
# This workflow automates deploys and releases. | |
# Updates to _version.py that are pushed to main will trigger this workflow. | |
# This workflow will run checks, publish to PyPI and publish a release on GitHub. | |
# If checks fail or deploy fails, run the separate "Publish..." action. | |
name: Automated Publish and Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'general-superstaq/general_superstaq/_version.py' | |
jobs: | |
run_checks: | |
uses: ./.github/workflows/ci.yml | |
secrets: inherit | |
publish_and_release: | |
needs: run_checks | |
uses: ./.github/workflows/main.yml | |
secrets: inherit |