Create zenodo.yml

This commit is contained in:
Ananth Venkatesh 2024-02-15 14:09:01 -08:00 committed by GitHub
parent 784d75986d
commit 2f716e36d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

23
.github/workflows/zenodo.yml vendored Normal file
View file

@ -0,0 +1,23 @@
on:
workflow_dispatch:
inputs:
name:
description: 'Zenodo File Upload Name'
required: true
type: string
path:
description: 'Relative file path from scripts directory'
required: true
type: string
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Run Zenodo uploader
- with:
ZENODO: ${{ secrets.ZENODO }
- run: |
cd scripts
bash run.sh ${{ inputs.name }} ${{ inputs.path }}