Align Genie response header flush-left with the bubble body (B2-110) #632
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: {} | |
| # Disabled for now, pending further work. | |
| # push: | |
| # tags: | |
| # - 'v[0-9]+.[0-9]+.[0-9]+' # Must match semantic version tags like 'v1.2.3' | |
| jobs: | |
| publish: | |
| runs-on: | |
| group: databrickslabs-protected-runner-group | |
| labels: linux-ubuntu-latest | |
| environment: release | |
| permissions: | |
| # Used to authenticate to PyPI via OIDC and sign the release's artifacts with sigstore-python. | |
| id-token: write | |
| # Used to attach signing artifacts to the published release. | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| - name: Build wheels | |
| run: make build | |
| - name: Github release | |
| uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0 | |
| with: | |
| files: | | |
| dist/databricks_*.whl | |
| dist/databricks_*.tar.gz | |
| - uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 | |
| name: Publish package distributions to PyPI | |
| - name: Sign artifacts with Sigstore | |
| uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0 | |
| with: | |
| inputs: | | |
| dist/databricks_*.whl | |
| dist/databricks_*.tar.gz | |
| release-signing-artifacts: true |