chore: update to bubbletea v2 #629
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
| # Copyright 2026 Columnar Technologies Inc. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| name: Release dbc | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| pull_request: | |
| permissions: | |
| contents: write | |
| id-token: write # For AWS auth | |
| jobs: | |
| snapshot: | |
| runs-on: ubuntu-latest | |
| environment: snapshot | |
| if: github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 | |
| with: | |
| go-version-file: './go.mod' | |
| # pull more recent version of wixl than in the ubuntu repos | |
| # needed for Path Env update support | |
| - name: Install wixl | |
| run: | | |
| wget http://ftp.de.debian.org/debian/pool/main/m/msitools/wixl-data_0.106+repack-1_all.deb | |
| wget http://ftp.de.debian.org/debian/pool/main/m/msitools/wixl_0.106+repack-1_amd64.deb | |
| sudo apt install -y msitools ./wixl-data_0.106+repack-1_all.deb ./wixl_0.106+repack-1_amd64.deb | |
| rm ./wixl-data_0.106+repack-1_all.deb ./wixl_0.106+repack-1_amd64.deb | |
| - name: install nfpm | |
| run: go install github.com/goreleaser/nfpm/v2/cmd/nfpm@latest | |
| - name: Install Snapcraft | |
| uses: samuelmeuli/action-snapcraft@fceeb3c308e76f3487e72ef608618de625fb7fe8 # v3 | |
| - name: Import signing GPG key | |
| env: | |
| COLUMNAR_GPG_KEY: ${{ secrets.SIGNING_PRIVATE_KEY }} | |
| run: | | |
| echo "$COLUMNAR_GPG_KEY" | gpg --batch --import | |
| KEY_ID=$(gpg -K | sed -n '/^\s/s/\s*//p') | |
| printf "trust\n5\ny\nquit\n" | gpg --batch --no-tty --command-fd 0 --edit-key "$KEY_ID" | |
| echo "default-cache-ttl 46000" >> ~/.gnupg/gpg-agent.conf | |
| echo "allow-preset-passphrase" >> ~/.gnupg/gpg-agent.conf | |
| gpg-connect-agent "RELOADAGENT" /bye | |
| KEYGRIP=$(gpg -K --with-keygrip | grep -m 1 "Keygrip =" | awk '{print $3}') | |
| gpg-connect-agent "PRESET_PASSPHRASE $KEYGRIP -1 $(echo -n '${{ secrets.SIGNING_PASSWORD }}' | od -An -t x1 | tr -d ' ')" | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install Wheel | |
| run: pip install wheel | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Run GoReleaser Snapshot | |
| uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0 | |
| id: gorelease-snapshot | |
| with: | |
| distribution: goreleaser-pro | |
| version: "~> v2" | |
| args: release -p 20 --clean --snapshot | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | |
| SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
| - name: Upload Snapshot Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: snapshot-artifacts | |
| path: | | |
| dist/*.tar.gz | |
| dist/*.zip | |
| dist/*.sig | |
| dist/*.snap | |
| dist/*.deb | |
| dist/*.rpm | |
| dist/msi/**/*.msi | |
| dist/python/* | |
| production_deploy: | |
| runs-on: ubuntu-latest | |
| environment: production | |
| if: github.event_name == 'push' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 | |
| with: | |
| go-version-file: './go.mod' | |
| # pull more recent version of wixl than in the ubuntu repos | |
| # needed for Path Env update support | |
| - name: Install wixl | |
| run: | | |
| wget http://ftp.de.debian.org/debian/pool/main/m/msitools/wixl-data_0.106+repack-1_all.deb | |
| wget http://ftp.de.debian.org/debian/pool/main/m/msitools/wixl_0.106+repack-1_amd64.deb | |
| sudo apt install -y msitools ./wixl-data_0.106+repack-1_all.deb ./wixl_0.106+repack-1_amd64.deb | |
| rm ./wixl-data_0.106+repack-1_all.deb ./wixl_0.106+repack-1_amd64.deb | |
| - name: install nfpm | |
| run: go install github.com/goreleaser/nfpm/v2/cmd/nfpm@latest | |
| - name: Install Snapcraft | |
| uses: samuelmeuli/action-snapcraft@fceeb3c308e76f3487e72ef608618de625fb7fe8 # v3 | |
| - name: Import signing GPG key | |
| env: | |
| COLUMNAR_GPG_KEY: ${{ secrets.SIGNING_PRIVATE_KEY }} | |
| run: | | |
| echo "$COLUMNAR_GPG_KEY" | gpg --batch --import | |
| KEY_ID=$(gpg -K | sed -n '/^\s/s/\s*//p') | |
| printf "trust\n5\ny\nquit\n" | gpg --batch --no-tty --command-fd 0 --edit-key "$KEY_ID" | |
| echo "default-cache-ttl 46000" >> ~/.gnupg/gpg-agent.conf | |
| echo "allow-preset-passphrase" >> ~/.gnupg/gpg-agent.conf | |
| gpg-connect-agent "RELOADAGENT" /bye | |
| KEYGRIP=$(gpg -K --with-keygrip | grep -m 1 "Keygrip =" | awk '{print $3}') | |
| gpg-connect-agent "PRESET_PASSPHRASE $KEYGRIP -1 $(echo -n '${{ secrets.SIGNING_PASSWORD }}' | od -An -t x1 | tr -d ' ')" | |
| - name: AWS Login | |
| uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1 | |
| with: | |
| role-to-assume: ${{ secrets.AWS_ROLE }} | |
| role-session-name: deploy-production-${{ github.run_id }}-${{ github.run_attempt }} | |
| aws-region: ${{ vars.AWS_REGION }} | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install Wheel | |
| run: pip install wheel | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0 | |
| with: | |
| username: "columnar" | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| # cross-platform macos notarization/signing | |
| - name: Install anchore/quill | |
| run: | | |
| curl -sSfL https://get.anchore.io/quill | sudo sh -s -- -b /usr/local/bin | |
| # setup digicert signing | |
| - uses: digicert/ssm-code-signing@fb61e357690ad6aaa11c372000c37fb74d35c000 # v1.1.1 | |
| id: digicert | |
| - name: Setup Certificate and Env | |
| run: | | |
| curl -fSslL https://github.com/ebourg/jsign/releases/download/7.0/jsign_7.0_all.deb -o jsign_7.0_all.deb | |
| sudo dpkg --install jsign_7.0_all.deb | |
| rm jsign_7.0_all.deb | |
| echo "PKCS11_CONFIG=${{ steps.digicert.outputs.PKCS11_CONFIG }}" >> "$GITHUB_ENV" | |
| SM_TOOLS_DIR=$(dirname "$(realpath '${{ steps.digicert.outputs.PKCS11_CONFIG }}')") | |
| echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 -d > "${SM_TOOLS_DIR}/Certificate_pkcs12.p12" | |
| echo "SM_HOST=${{ secrets.SM_HOST }}" >> "$GITHUB_ENV" | |
| echo "SM_API_KEY=${{ secrets.SM_API_KEY }}" >> "$GITHUB_ENV" | |
| echo "SM_CLIENT_CERT_FILE=${SM_TOOLS_DIR}/Certificate_pkcs12.p12" >> "$GITHUB_ENV" | |
| echo "SM_CLIENT_CERT_PASSWORD=${{ secrets.SM_CLIENT_CERT_PASSWORD }}" >> "$GITHUB_ENV" | |
| echo "SM_KEYPAIR_ALIAS=${{ secrets.SM_KEYPAIR_ALIAS }}" >> "$GITHUB_ENV" | |
| # clean up | |
| git clean -xdf | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0 | |
| id: gorelease | |
| with: | |
| distribution: goreleaser-pro | |
| version: "~> v2" | |
| args: release -p 20 --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | |
| DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN}} | |
| SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
| MACOS_SIGN_P12: ${{ secrets.MACOS_SIGN_P12 }} | |
| MACOS_SIGN_PASSWORD: ${{ secrets.MACOS_SIGN_PASSWORD }} | |
| MACOS_NOTARY_ISSUER_ID: ${{ secrets.MACOS_NOTARY_ISSUER_ID }} | |
| MACOS_NOTARY_KEY: ${{ secrets.MACOS_NOTARY_KEY }} | |
| MACOS_NOTARY_KEY_ID: ${{ secrets.MACOS_NOTARY_KEY_ID }} | |
| DBC_TAP_GITHUB_PAT: ${{ secrets.DBC_TAP_GITHUB_PAT }} | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # 1.12.4 | |
| with: | |
| packages-dir: dist/python/ | |
| - name: Update CF Latest Key | |
| if: contains(fromJSON(steps.gorelease.outputs.metadata).version, '-') == false | |
| run: | | |
| ETAG=$(aws cloudfront-keyvaluestore describe-key-value-store \ | |
| --kvs-arn=${{ secrets.AWS_CF_KVSTORE_ARN }} | jq -r '.ETag') | |
| aws cloudfront-keyvaluestore put-key \ | |
| --if-match=$ETAG \ | |
| --kvs-arn=${{ secrets.AWS_CF_KVSTORE_ARN }} \ | |
| --key=latest \ | |
| --value=${{ fromJSON(steps.gorelease.outputs.metadata).version }} |