Skip to content

Commit

Permalink
Fix env var?
Browse files Browse the repository at this point in the history
  • Loading branch information
kkinder committed May 27, 2024
1 parent 11447e3 commit 2cb581c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build
- name: Build Poetry image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Run image
- name: Run Poetry image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Set release version
id: set_version
run: |
echo "RELEASE_VERSION=$(poetry version -s)" >> $GITHUB_ENV
echo "Release version is ${{ env.RELEASE_VERSION }}"
- name: build
- name: Show release version
run: echo "Release version is ${{ env.RELEASE_VERSION }}"
- name: Build PuePy
run: |
poetry build
VERSION=$(poetry version -s)
Expand Down

0 comments on commit 2cb581c

Please sign in to comment.