publish-release #22
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 can be trigerred manually. | |
# Don't extend this workflow. If any more steps are needed please extend the | |
# "publish-release" action in "z_quantum_actions". Allows reusing between repos. | |
name: publish-release | |
on: | |
workflow_dispatch: | |
jobs: | |
publish-release: | |
runs-on: ubuntu-latest | |
steps: | |
# Needed to get access to publish-release action definition | |
- name: Check out the released repo | |
uses: actions/checkout@v2 | |
with: | |
# Fetch whole repo to get access to tags to read current package | |
# version. | |
fetch-depth: 0 | |
- name: Run tests using libs from PyPI | |
shell: bash | |
run: make run_tests_before_release | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
- name: Run publish release action | |
uses: ./subtrees/z_quantum_actions/actions/publish-release |