Skip to content

chore(deps): Bump singer-sdk from 0.45.5 to 0.45.6 in the runtime-dep… #125

chore(deps): Bump singer-sdk from 0.45.5 to 0.45.6 in the runtime-dep…

chore(deps): Bump singer-sdk from 0.45.5 to 0.45.6 in the runtime-dep… #125

Workflow file for this run

name: Build and Publish Python Package
on:
push:
permissions:
contents: write
id-token: write
jobs:
build:
name: Build wheel and sdist
runs-on: ubuntu-latest
outputs:
version: ${{ steps.baipp.outputs.package_version }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@b5076c307dc91924a82ad150cdd1533b444d3310 # v2.12.0
id: baipp
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
needs: [build]
environment:
name: pypi
url: https://pypi.org/project/meltanolabs-tap-github/${{ needs.build.outputs.version }}
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
with:
name: Packages
path: dist
- name: Upload wheel to release
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # 2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Deploy to PyPI
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4