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 1cb8099 commit e9fe6b1Copy full SHA for e9fe6b1
.github/workflows/pypi.yaml
@@ -18,9 +18,15 @@ jobs:
18
run: |
19
python -m pip install --upgrade pip poetry
20
poetry install --no-root
21
+ - name: Set env
22
+ run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
23
+ - name: Test
24
+ run: |
25
+ echo $RELEASE_VERSION
26
+ echo ${{ env.RELEASE_VERSION }}
27
- name: Update Version
28
- poetry version ${{ github.ref }}
29
+ poetry version ${{ env.RELEASE_VERSION }}
30
- name: Build Library
31
32
poetry build
0 commit comments