Update iga and codemeta2cff #20
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
name: InvenioRDM GitHub Archiver | ||
env: | ||
INVENIO_SERVER: https://data.caltech.edu | ||
# These variables are IGA options. Please see the docs for info. | ||
draft: false | ||
all_assets: false | ||
all_metadata: false | ||
community: none | ||
parent_record: "6qhkm-7n074" | ||
debug: false | ||
# ╭────────────────────────────────────────────╮ | ||
# │ The rest of this file should be left as-is │ | ||
# ╰────────────────────────────────────────────╯ | ||
name: InvenioRDM GitHub Archiver | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
inputs: | ||
release_tag: | ||
description: The release tag (empty = latest) | ||
parent_record: | ||
description: ID of parent record (for versioning) | ||
community: | ||
description: Name of InvenioRDM community (if any) | ||
draft: | ||
description: Mark the record as a draft | ||
type: boolean | ||
all_assets: | ||
description: Attach all GitHub assets | ||
type: boolean | ||
all_metadata: | ||
description: Include additional GitHub metadata | ||
type: boolean | ||
debug: | ||
description: Print debug info in the GitHub log | ||
type: boolean | ||
run-name: Archive ${{inputs.release_tag || 'latest release'}} in InvenioRDM | ||
jobs: | ||
run_iga: | ||
name: Send to ${{needs.get_repository.outputs.server}} | ||
runs-on: ubuntu-latest | ||
needs: get_repository | ||
steps: | ||
- uses: caltechlibrary/iga@v1 | ||
with: | ||
INVENIO_SERVER: ${{env.INVENIO_SERVER}} | ||
INVENIO_TOKEN: ${{secrets.INVENIO_TOKEN}} | ||
all_assets: ${{github.event.inputs.all_assets || env.all_assets}} | ||
all_metadata: ${{github.event.inputs.all_metadata || env.all_metadata}} | ||
debug: ${{github.event.inputs.debug || env.debug}} | ||
draft: ${{github.event.inputs.draft || env.draft}} | ||
community: ${{github.event.inputs.community || env.community}} | ||
parent_record: ${{github.event.inputs.parent_record || env.parent_record}} | ||
release_tag: ${{github.event.inputs.release_tag || 'latest'}} | ||
get_repository: | ||
name: Get repository name | ||
runs-on: ubuntu-latest | ||
outputs: | ||
server: ${{steps.parse.outputs.host}} | ||
steps: | ||
- name: Extract name from INVENIO_SERVER | ||
id: parse | ||
run: echo "host=$(cut -d'/' -f3 <<< ${{env.INVENIO_SERVER}} | cut -d':' -f1)" >> $GITHUB_OUTPUT |