File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 16
16
steps :
17
17
- name : Checkout
18
18
uses : actions/checkout@v3
19
- with :
20
- fetch-depth : 0
21
19
22
20
- name : Set up Python
23
21
uses : actions/setup-python@v3
51
49
runs-on : ubuntu-latest
52
50
53
51
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
+
54
77
- name : Publish a draft release
55
78
run : |
56
79
NEXT_CLI_VERSION=${{ env.NEXT_CLI_VERSION }}
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " skyline-profiler"
3
- version = " 0.10.5 "
3
+ version = " 0.10.6 "
4
4
description = " Interactive performance profiling and debugging tool for PyTorch neural networks."
5
5
authors = [
" Geoffrey Yu <[email protected] >" ]
6
6
maintainers = [
" Akbar Nurlybayev <[email protected] >" ]
You can’t perform that action at this time.
0 commit comments