-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Publish workflows on WorkflowHub | ||
|
||
on: push | ||
|
||
jobs: | ||
wfh-submit: | ||
name: WorkflowHub Submission | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Submit workflows | ||
uses: workflowhub-eu/submission-action@main | ||
env: | ||
API_TOKEN: ${{ secrets.WORKFLOWHUB_API_TOKEN }} | ||
with: | ||
team_id: 123 | ||
instance: https://dev.workflowhub.eu |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
{ | ||
"@context": "https://w3id.org/ro/crate/1.1/context", | ||
"@graph": [ | ||
{ | ||
"@id": "ro-crate-metadata.json", | ||
"@type": "CreativeWork", | ||
"about": { | ||
"@id": "./" | ||
}, | ||
"conformsTo": { | ||
"@id": "https://w3id.org/ro/crate/1.1" | ||
} | ||
}, | ||
{ | ||
"@id": "./", | ||
"@type": "Dataset", | ||
"conformsTo": [ | ||
{ | ||
"@id": "https://w3id.org/ro/crate/1.1" | ||
}, | ||
{ | ||
"@id": "https://w3id.org/workflowhub/workflow-ro-crate/1.0" | ||
} | ||
], | ||
"mainEntity": { | ||
"@id": "concat_two_files.ga" | ||
}, | ||
"author": [ | ||
|
||
], | ||
"license": "MIT", | ||
"url": "https://github.com/seek4science/workflow-test-fixture", | ||
"version": 1, | ||
"name": "Research Object Crate for Concat two files", | ||
"description": "# workflow-test-fixture\r\nA workflow and associated files for use in SEEK's tests :)\r\n", | ||
"sdDatePublished": "2024-07-04 13:31:54 +0100", | ||
"hasPart": [ | ||
{ | ||
"@id": "concat_two_files.ga" | ||
}, | ||
{ | ||
"@id": "diagram.png" | ||
} | ||
] | ||
}, | ||
{ | ||
"@id": "concat_two_files.ga", | ||
"@type": [ | ||
"File", | ||
"SoftwareSourceCode", | ||
"ComputationalWorkflow" | ||
], | ||
"contentSize": 4813, | ||
"programmingLanguage": { | ||
"@id": "#galaxy" | ||
}, | ||
"image": { | ||
"@id": "diagram.png" | ||
}, | ||
"dct:conformsTo": "https://bioschemas.org/profiles/ComputationalWorkflow/1.0-RELEASE/", | ||
"description": "# workflow-test-fixture\r\nA workflow and associated files for use in SEEK's tests :)\r\n", | ||
"name": "Concat two files", | ||
"keywords": "cat", | ||
"version": 1, | ||
"license": "https://spdx.org/licenses/MIT", | ||
"creator": { | ||
"@id": "#Finn%20Bacall" | ||
}, | ||
"dateCreated": "2024-07-04T12:31:49Z", | ||
"dateModified": "2024-07-04T12:31:49Z", | ||
"isPartOf": [ | ||
|
||
], | ||
"sdPublisher": { | ||
"@id": "http://about.workflowhub.eu" | ||
} | ||
}, | ||
{ | ||
"@id": "diagram.png", | ||
"@type": [ | ||
"File", | ||
"ImageObject", | ||
"WorkflowSketch" | ||
], | ||
"contentSize": 32248 | ||
}, | ||
{ | ||
"@id": "#Finn Bacall", | ||
"@type": "Person", | ||
"name": "Finn Bacall" | ||
}, | ||
{ | ||
"@id": "#galaxy", | ||
"@type": "ComputerLanguage", | ||
"name": "Galaxy", | ||
"identifier": { | ||
"@id": "https://galaxyproject.org/" | ||
}, | ||
"url": { | ||
"@id": "https://galaxyproject.org/" | ||
} | ||
}, | ||
{ | ||
"@id": "http://about.workflowhub.eu", | ||
"@type": "Organization", | ||
"name": "WorkflowHub", | ||
"url": "http://about.workflowhub.eu" | ||
} | ||
] | ||
} |