-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:zapatacomputing/orquestra-vqa into …
…zqs-1011-2
- Loading branch information
Showing
7 changed files
with
83 additions
and
45 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 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 | ||
|
||
# ------------------------------------------------------------------------ | ||
# Loads private SSH key to the SSH agent. Allows to install dependencies | ||
# from private git repos, but requires setting `secrets.SSH_PRIVATE_KEY` | ||
# in repo settings. | ||
# ------------------------------------------------------------------------ | ||
- uses: ./subtrees/z_quantum_actions/actions/ssh_setup | ||
with: | ||
ssh_key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Get orquestra-quantum | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: zapatacomputing/orquestra-quantum | ||
path: orquestra-quantum | ||
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Get orquestra-opt | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: zapatacomputing/orquestra-opt | ||
path: orquestra-opt | ||
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
|
||
- name: Run publish release action | ||
uses: ./subtrees/z_quantum_actions/actions/publish-release |
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 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 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 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 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
23 changes: 0 additions & 23 deletions
23
subtrees/z_quantum_actions/workflow-templates/submit-dev-main-pr.yml
This file was deleted.
Oops, something went wrong.