Skip to content

Commit aa97492

Browse files
author
Akbar Nurlybayev
authored
Merge pull request #1 from CentML/release-v0.10.6
Release v0.10.6
2 parents 6de9c99 + 03d62ad commit aa97492

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

.github/workflows/build-and-publish-new-version.yml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v3
19-
with:
20-
fetch-depth: 0
2119

2220
- name: Set up Python
2321
uses: actions/setup-python@v3
@@ -51,6 +49,31 @@ jobs:
5149
runs-on: ubuntu-latest
5250

5351
steps:
52+
- name: Checkout
53+
uses: actions/checkout@v3
54+
with:
55+
fetch-depth: 0
56+
57+
- name: Set up Python
58+
uses: actions/setup-python@v3
59+
with:
60+
python-version: '3.8'
61+
62+
- name: Install and configure Poetry
63+
uses: snok/install-poetry@v1
64+
with:
65+
virtualenvs-in-project: true
66+
67+
- name: Fetch current version
68+
run: |
69+
echo "NEXT_CLI_VERSION=$(poetry version --short)" >> $GITHUB_ENV
70+
71+
- name: Download artifact
72+
uses: actions/download-artifact@v3
73+
with:
74+
name: ${{ env.NEXT_CLI_VERSION }}
75+
path: dist
76+
5477
- name: Publish a draft release
5578
run: |
5679
NEXT_CLI_VERSION=${{ env.NEXT_CLI_VERSION }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "skyline-profiler"
3-
version = "0.10.5"
3+
version = "0.10.6"
44
description = "Interactive performance profiling and debugging tool for PyTorch neural networks."
55
authors = ["Geoffrey Yu <[email protected]>"]
66
maintainers = ["Akbar Nurlybayev <[email protected]>"]

0 commit comments

Comments
 (0)