Skip to content

Commit

Permalink
need to separate run steps
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Mar 4, 2022
1 parent 203a21e commit 01960c2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,16 @@ runs:
using: "composite"
steps:

- name: Install Dependencies
run: pip install requests
shell: bash

- name: Deploy Zenodo
id: deploy
env:
zenodo_json: ${{ inputs.zenodo_json }}
archive: ${{ inputs.archive }}
version: ${{ inputs.version }}
ACTION_PATH: ${{ github.action_path }}
run: |
pip install requests
${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version}
run: ${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version}
shell: python

0 comments on commit 01960c2

Please sign in to comment.