We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01960c2 commit 79bcdb5Copy full SHA for 79bcdb5
action.yml
@@ -43,16 +43,12 @@ runs:
43
using: "composite"
44
steps:
45
46
- - name: Install Dependencies
47
- run: pip install requests
48
- shell: bash
49
-
50
- name: Deploy Zenodo
51
id: deploy
52
env:
53
zenodo_json: ${{ inputs.zenodo_json }}
54
archive: ${{ inputs.archive }}
55
version: ${{ inputs.version }}
56
ACTION_PATH: ${{ github.action_path }}
57
- run: ${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version}
58
- shell: python
+ run: python ${{ github.action_path }}/scripts/deploy.py upload ${archive} --zenodo-json ${zenodo_json} --version ${version}
+ shell: bash
0 commit comments