generated from caltechlibrary/template
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (68 loc) · 2.36 KB
/
iga.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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: 'c14ab-m2d78'
debug: false
# ~~~~~~~~~~ The rest of this file should be left as-is ~~~~~~~~~~
on:
release:
types: [published]
workflow_dispatch:
inputs:
release_tag:
description: "The tag of the release to archive:"
draft:
default: false
description: "Mark the record as a draft:"
all_assets:
default: false
description: "Attach all GitHub assets:"
all_metadata:
default: false
description: "Include additional GitHub metadata:"
community:
description: "Send record to InvenioRDM community:"
parent_record:
description: "ID of parent record (for versioning):"
jobs:
CodeMeta2CFF:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Convert CFF
uses: caltechlibrary/codemeta2cff@main
- name: Commit CFF
uses: EndBug/add-and-commit@v9
with:
message: 'Add CITATION.cff for release'
add: "['CITATION.cff']"
run_iga:
name: "Send to ${{needs.get_repository.outputs.server}}"
runs-on: ubuntu-latest
needs: [get_repository, CodeMeta2CFF]
steps:
- uses: caltechlibrary/iga@main
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:
- id: parse
run: echo "host=$(cut -d'/' -f3 <<< ${{env.INVENIO_SERVER}} | cut -d':' -f1)" >> $GITHUB_OUTPUT