Skip to content

Commit

Permalink
Update pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvasquezrojas committed Nov 28, 2024
1 parent ea8aa61 commit 6741c23
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/compare-versions-pip-and-pipx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:

- name: Install Snowflake CLI with pip
run: |
python -m pip install snowflake-cli-labs
python -m pip install snowflake-cli
- name: Store snow version
run: |
snow_version=$(snow --version)
echo "snow_version_pip=$snow_version" >> $GITHUB_ENV
Expand All @@ -42,7 +45,7 @@ jobs:
with:
default-config-file-path: '.github/workflows/tests-files/config.toml'

- name: Test snow installation
- name: Compare pipx and pip versions
shell: bash
run: |
snow_version_pipx=$(snow --version)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: '3.10'

- name: Install Snowflake CLI with pip
run: python -m pip install snowflake-cli-labs
run: python -m pip install snowflake-cli

- name: Install Snowflake CLI with pipx
uses: ./
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
default-config-file-path: '.github/workflows/tests-files/config.toml'

- name: Install Snowflake CLI with pip
run: python -m pip install snowflake-cli-labs
run: python -m pip install snowflake-cli

- name: Test snow installation
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# action.yml
name: 'Install Snowflake CLI'
description: 'Download and install snowflake-cli-labs through pipx'
description: 'Download and install snowflake-cli through pipx'
branding:
icon: 'terminal'
color: 'blue'
Expand All @@ -18,7 +18,7 @@ inputs:
runs:
using: 'composite'
steps:
- name: Download snowflake-cli-labs ${{ inputs.cli_version }}
- name: Download snowflake-cli ${{ inputs.cli_version }}
shell: bash
run: bash $GITHUB_ACTION_PATH/scripts/install-snowcli.sh
env:
Expand Down

0 comments on commit 6741c23

Please sign in to comment.