From 79bcdb5134a9712a1d08fd97d62876044a5882e4 Mon Sep 17 00:00:00 2001 From: vsoch Date: Fri, 4 Mar 2022 00:12:27 -0700 Subject: [PATCH] typo Signed-off-by: vsoch --- action.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 4a8dfcb..349ffb6 100644 --- a/action.yml +++ b/action.yml @@ -43,10 +43,6 @@ runs: using: "composite" steps: - - name: Install Dependencies - run: pip install requests - shell: bash - - name: Deploy Zenodo id: deploy env: @@ -54,5 +50,5 @@ runs: archive: ${{ inputs.archive }} version: ${{ inputs.version }} ACTION_PATH: ${{ github.action_path }} - run: ${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version} - shell: python + run: python ${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version} + shell: bash