We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d273e1 commit 5f7d4f3Copy full SHA for 5f7d4f3
1 file changed
.github/workflows/release.yaml
@@ -10,18 +10,21 @@ permissions:
10
jobs:
11
build:
12
runs-on: ubuntu-latest
13
+ outputs:
14
+ package_version: ${{ steps.baipp.outputs.package_version }}
15
steps:
16
- uses: actions/checkout@v4
17
with:
18
fetch-depth: 0
19
- uses: hynek/build-and-inspect-python-package@v2
20
+ id: baipp
21
22
publish:
23
24
needs: build
25
environment:
26
name: publishing
- url: https://pypi.org/project/tap-betterstack
27
+ url: https://pypi.org/project/tap-betterstack/${{ needs.build.outputs.package_version }}
28
if: startsWith(github.ref, 'refs/tags/')
29
30
- uses: actions/download-artifact@v4
0 commit comments