Skip to content

SNOW-1011766: Removing unnecessary connection parameters from test_ge… #40

SNOW-1011766: Removing unnecessary connection parameters from test_ge…

SNOW-1011766: Removing unnecessary connection parameters from test_ge… #40

Workflow file for this run

name: Upload Python Package
on:
on: workflow_dispatch
permissions:
contents: read
defaults:
run:
working-directory: "./compat/snowflake-cli-labs"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Build package
run: python -m hatch build
- name: Publish package
run: python -m hatch publish -u __token__ -a ${{ secrets.PYPI_TOKEN }}