Skip to content

Commit

Permalink
Fix pypi publish job
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgelmh committed Nov 8, 2024
1 parent 872e055 commit b04ebf5
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,24 @@ on:
jobs:
build_package:
uses: ./.github/workflows/_build_package.yml
# publish_package:
# needs:
# - build_package
# uses: ./.github/workflows/_publish_package.yml
# publish_package_test:
# needs:
# - build_package
# uses: ./.github/workflows/_publish_package_test.yml
publish_package:
needs:
- build_package
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1

merge_into_release:
uses: ./.github/workflows/_merge_into_release.yml
secrets:
Expand Down

0 comments on commit b04ebf5

Please sign in to comment.