Skip to content

Commit

Permalink
[TMP] Change the branch of action files
Browse files Browse the repository at this point in the history
  • Loading branch information
whitphx committed Apr 4, 2024
1 parent 856a858 commit 0d6aa48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/actions/install-all-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'install all deps'
description: 'Install all deps'

inputs:
always_install_pnpm:
always_install_pnpm:
description: 'Dictates whether or not we should install pnpm & dependencies, regardless of the cache'
default: 'false'
node_auth_token:
Expand Down Expand Up @@ -85,10 +85,10 @@ runs:
shell: bash
run: |
. ${{ env.VENV_ACTIVATE }}
python -m pip install -e client/python
python -m pip install -e client/python
python -m pip install -e ".[oauth]"
- name: install-frontend
uses: "gradio-app/gradio/.github/actions/install-frontend-deps@main"
uses: "gradio-app/gradio/.github/actions/install-frontend-deps@lite-wheel-contents-optimization"
with:
always_install_pnpm: ${{ inputs.always_install_pnpm }}
node_auth_token: ${{ inputs.node_auth_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-spaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
cache-dependency-path: pnpm-lock.yaml

- name: install dependencies
uses: "gradio-app/gradio/.github/actions/install-all-deps@main"
uses: "gradio-app/gradio/.github/actions/install-all-deps@lite-wheel-contents-optimization"
with:
always_install_pnpm: true
node_auth_token: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit 0d6aa48

Please sign in to comment.