Skip to content

Commit 69a6542

Browse files
authored
Pre-release update (#8)
* Retain metadata with Zenodo sync and validate JSON to do so
1 parent 684695e commit 69a6542

File tree

3 files changed

+100
-6
lines changed

3 files changed

+100
-6
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Check zenodo metadata
2+
3+
on:
4+
push:
5+
paths:
6+
- '.zenodo.json'
7+
8+
jobs:
9+
check-zenodo-metadata:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '22'
18+
- name: Install dependencies
19+
run: npm install [email protected]
20+
- name: Check .zenodo.json file
21+
run: |
22+
npx zenodraft metadata validate .zenodo.json

.zenodo.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"creators": [
3+
{
4+
"name": "Campolongo, Elizabeth",
5+
"orcid": "0000-0003-0846-2413",
6+
"affiliation": "The Ohio State University"
7+
},
8+
{
9+
"name": "Thompson, Matthew",
10+
"orcid": "0000-0003-0583-8585",
11+
"affiliation": "The Ohio State University"
12+
},
13+
{
14+
"name": "Zhang, Net",
15+
"orcid": "0000-0003-2664-451X",
16+
"affiliation": "The Ohio State University"
17+
},
18+
{
19+
"name": "Duan, Yuehua",
20+
"orcid": "0000-0002-8547-5907",
21+
"affiliation": "The Ohio State University"
22+
},
23+
{
24+
"name": "Bradley, John",
25+
"orcid": "0000-0003-3858-848X",
26+
"affiliation": "Duke University"
27+
},
28+
{
29+
"name": "Eyriay, Iuliia",
30+
"orcid": "0009-0007-1597-8684",
31+
"affiliation": "University of Guelph"
32+
},
33+
{
34+
"name": "Taylor, Graham",
35+
"orcid": "0000-0001-5867-3652",
36+
"affiliation": "University of Guelph"
37+
},
38+
{
39+
"name": "Lapp, Hilmar",
40+
"orcid": "0000-0001-9107-0714",
41+
"affiliation": "Duke University"
42+
}
43+
],
44+
"description": "<p>Template guide site for collaborative work, including GitHub and Hugging Face workflows.&nbsp;</p>\n<p>The website hosts guides to FAIR (findable, accessible, interoperable, reusable) and reproducible workflows, documentation, and general best-practices for collaborative science. We aim to provide a helpful resource for scientists working in <a href=\"https://imageomics.github.io/Collaborative-distributed-science-guide/wiki-guide/Glossary-for-Imageomics/#imageomics\"><em>imageomics</em></a> and related interdisciplinary fields.</p>\n<p>Website: <a href=\"https://imageomics.github.io/Collaborative-distributed-science-guide/\">imageomics.github.io/Collaborative-distributed-science-guide/</a></p>",
45+
"keywords": [
46+
"imageomics",
47+
"metadata",
48+
"guide",
49+
"best practices",
50+
"cheat-sheet",
51+
"command line cheat-sheet",
52+
"collaborative science",
53+
"projects",
54+
"collaborative workflows",
55+
"standards"
56+
],
57+
"title": "Collaborative Distributed Science Guide",
58+
"version": "1.0.1",
59+
"license": "CC0-1.0",
60+
"publication_date": "2025-09-15",
61+
"grants": [
62+
{
63+
"id": "021nxhr62::2118240"
64+
},
65+
{
66+
"id": "021nxhr62::2330423"
67+
},
68+
{
69+
"id": "01h531d29::585136"
70+
}
71+
]
72+
}

CITATION.cff

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ authors:
2525
given-names: "Hilmar"
2626
orcid: "https://orcid.org/0000-0001-9107-0714"
2727
cff-version: 1.2.0
28-
date-released: "2025-08-15"
28+
date-released: "2025-09-15"
2929
identifiers:
30-
- description: "The GitHub release URL of tag v1.0.0."
30+
- description: "The GitHub release URL of tag v1.0.1."
3131
type: url
32-
value: "https://github.com/Imageomics/Collaborative-distributed-science-guide/releases/tag/v1.0.0"
33-
- description: "The GitHub URL of the commit tagged with v1.0.0."
32+
value: "https://github.com/Imageomics/Collaborative-distributed-science-guide/releases/tag/v1.0.1"
33+
- description: "The GitHub URL of the commit tagged with v1.0.1."
3434
type: url
35-
value: "https://github.com/Imageomics/Collaborative-distributed-science-guide/tree/c61bfb8b0a539bb06d3221cb1d8dc37f65254d68"
35+
value: "https://github.com/Imageomics/Collaborative-distributed-science-guide/tree/<commit-hash>" # update on release
3636
keywords:
3737
- imageomics
3838
- metadata
@@ -48,4 +48,4 @@ license: CC0-1.0
4848
message: "If you find these docs helpful in your research, please cite them as below."
4949
repository-code: "https://github.com/Imageomics/Collaborative-distributed-science-guide"
5050
title: "Collaborative Distributed Science Guide"
51-
version: "1.0.0"
51+
version: "1.0.1"

0 commit comments

Comments
 (0)