eexiv/.github/workflows/zenodo.yml

24 lines
510 B
YAML
Raw Normal View History

2024-02-15 14:09:01 -08:00
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 }}