Skip to content

Commit

Permalink
build: fix publish version (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryankanno authored Oct 26, 2024
1 parent cdfd811 commit 8d5faf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
id: version
with:
command: dunamai from git
args: --no-metadata --format "{base}" --pattern "(?P<base>\d\d\d\d\.\d\d\.\d\d)"
args: --no-metadata --format "{base}" --pattern "(?P<base>\d\d\d\d\.\d+\.\d+)"

- run: echo ${{ steps.version.outputs.version }}
- run: poetry version ${{ steps.version.outputs.version }}

- name: poetry build
run: poetry build

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: poetry_build
path: dist/

0 comments on commit 8d5faf8

Please sign in to comment.