This repository was archived by the owner on Dec 12, 2022. It is now read-only.
File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 9
9
release :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v1
12
+ - uses : actions/checkout@v2
13
+ with :
14
+ fetch-depth : 0
13
15
- name : Update version in code
14
16
env :
15
17
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16
18
run : |
19
+ git fetch --tags --force
17
20
source <(curl -sL http://ci.q-ctrl.com)
18
21
./ci vault login -r ${{ secrets.VAULT_ROLE_ID }} -s ${{ secrets.VAULT_SECRET_ID }}
19
- ./ci docker run qctrl/python-build: 3.7 /scripts/housekeeping.sh
22
+ ./ci docker run qctrl/ci-images:python- 3.7-ci /scripts/housekeeping.sh
20
23
- name : Publish publicly
21
24
env :
22
25
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
26
run : |
24
27
source <(curl -sL http://ci.q-ctrl.com)
25
- ./ci docker run qctrl/python-build: 3.7 /scripts/publish-release-publicly.sh
28
+ ./ci docker run qctrl/ci-images:python- 3.7-ci /scripts/publish-release-publicly.sh
26
29
- name : Publish internally
27
30
run : |
28
- ./ci docker run qctrl/python-build: 3.7 /scripts/publish-release-internally.sh
31
+ ./ci docker run qctrl/ci-images:python- 3.7-ci /scripts/publish-release-internally.sh
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " qctrl-pyquil"
3
- version = " 0.0.6 "
3
+ version = " 0.0.7 "
4
4
description = " Q-CTRL Python PyQuil"
5
5
license = " Apache-2.0"
6
6
authors = [
" Q-CTRL <[email protected] >" ]
Original file line number Diff line number Diff line change 18
18
===========
19
19
"""
20
20
21
- __version__ = "0.0.6 "
21
+ __version__ = "0.0.7 "
22
22
23
23
from .program import convert_dds_to_pyquil_program
24
24
You can’t perform that action at this time.
0 commit comments