Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit d49c83e

Browse files
fix: Fix release CI (#30)
* fix ci * Bump version to 0.0.7 Co-authored-by: Q-CTRL DevOps <[email protected]>
1 parent 7412ee6 commit d49c83e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/on-release.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,23 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v2
13+
with:
14+
fetch-depth: 0
1315
- name: Update version in code
1416
env:
1517
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1618
run: |
19+
git fetch --tags --force
1720
source <(curl -sL http://ci.q-ctrl.com)
1821
./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
2023
- name: Publish publicly
2124
env:
2225
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2326
run: |
2427
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
2629
- name: Publish internally
2730
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

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "qctrl-pyquil"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
description = "Q-CTRL Python PyQuil"
55
license = "Apache-2.0"
66
authors = ["Q-CTRL <[email protected]>"]

qctrlpyquil/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
===========
1919
"""
2020

21-
__version__ = "0.0.6"
21+
__version__ = "0.0.7"
2222

2323
from .program import convert_dds_to_pyquil_program
2424

0 commit comments

Comments
 (0)