Skip to content

Commit

Permalink
chore: Add package version to the environment URL (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Dec 16, 2024
1 parent 73dd1f3 commit 2e8f53f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,20 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
outputs:
package_version: ${{ steps.baipp.outputs.package_version }}
steps:
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v2
id: baipp

publish:
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
environment:
name: publishing
url: https://pypi.org/p/tap-bitso/
url: https://pypi.org/project/tap-bitso/${{ needs.build.outputs.package_version }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 2e8f53f

Please sign in to comment.