.github/workflows/dataverse_workflow.yml #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Publish to GEUS Dataverse on package release | |
# https://github.com/IQSS/dataverse-uploader | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send repo to Dataverse | |
uses: IQSS/[email protected] | |
with: | |
DATAVERSE_TOKEN: ${{secrets.DATAVERSE_TOKEN}} | |
DATAVERSE_SERVER: https://dataverse.geus.dk | |
DATAVERSE_DATASET_DOI: doi:10.22008/FK2/3TSBF0 | |
DELETE: True | |
PUBLISH: False |