We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14e666 commit 8b18c55Copy full SHA for 8b18c55
.github/workflows/ci.yaml
@@ -37,8 +37,3 @@ jobs:
37
if: github.event_name == 'push'
38
run: |
39
poetry run codecov --token=${{ secrets.CODECOV_TOKEN }}
40
- - name: Get version
41
- id: vars
42
- run: echo ::set-output name=version::$(cat pyproject.toml)
43
- - name: Test output
44
- run: echo ${{ steps.vars.outputs.version }}
.github/workflows/pypi.yaml
@@ -18,6 +18,9 @@ jobs:
18
19
python -m pip install --upgrade pip poetry
20
poetry install --no-root
21
+ - name: Update Version
22
+ run: |
23
+ poetry version ${{ github.ref }}
24
- name: Build Library
25
26
poetry build
0 commit comments