Skip to content

Commit

Permalink
Merge pull request #1310 from procrastinate-org/fix-deployment
Browse files Browse the repository at this point in the history
Add missing "build" step in release workflow
  • Loading branch information
medihack authored Jan 28, 2025
2 parents 867d0ba + 4f3a664 commit 9c85e8e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
UV_FROZEN: "true"

jobs:
build:
tests:
strategy:
matrix:
include:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
path: .coverage.${{ matrix.python-version }}
include-hidden-files: true

acceptance:
acceptance-tests:
strategy:
matrix:
mode:
Expand Down Expand Up @@ -144,8 +144,8 @@ jobs:
name: success
runs-on: ubuntu-latest
needs:
- build
- acceptance
- tests
- acceptance-tests
- static-typing
steps:
- name: Report success
Expand All @@ -154,7 +154,7 @@ jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: [build]
needs: [tests]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

Expand Down Expand Up @@ -183,10 +183,13 @@ jobs:
permissions:
id-token: write
needs:
- build
- tests
- static-typing
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Build wheel & sdist
run: pipx run uv build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 9c85e8e

Please sign in to comment.