Skip to content

Commit

Permalink
publish improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Jun 6, 2024
1 parent 957fad0 commit 4b5e803
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- 'draft/v*'

env:
PYTHON_DEFAULT_VERSION: "3.11"
PYTHON_DEFAULT_VERSION: "3.12"

jobs:
publish:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
with:
version: ${{ steps.get-version.outputs.version }}
path: ./CHANGELOG.md
continue-on-error: ${{ steps.get-version.outputs.draft }}
continue-on-error: ${{ fromJSON(steps.get-version.outputs.draft) }}

- name: Build
run: pdm build
Expand All @@ -72,8 +72,8 @@ jobs:
with:
name: ${{ steps.get-version.outputs.version }}
body: ${{ steps.read-changelog.outputs.changes }}
draft: ${{ steps.get-version.outputs.draft }}
prerelease: ${{ steps.get-version.outputs.prerelease }}
draft: ${{ fromJSON(steps.get-version.outputs.draft)}}
prerelease: ${{ fromJSON(steps.get-version.outputs.prerelease) }}
files: >-
dist/*.tar.gz
dist/*.whl
Expand Down

0 comments on commit 4b5e803

Please sign in to comment.