Skip to content

Commit

Permalink
Add docs_link and update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jluethi committed Dec 13, 2024
1 parent d6b1ff9 commit 97f1bfd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Do not edit - changes here will be overwritten by Copier
_commit: v0.4.2
_commit: v0.4.4
_src_path: gh:fractal-analytics-platform/fractal-tasks-template
author_email: [email protected]
author_name: Lorenzo Cerrone
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ name: CI (build and test)

on:
push:
branches: ["main"]
branches:
- main
tags:
- "*"
pull_request:
branches: ["main"]
workflow_dispatch:
release:
types: [published]


jobs:
Expand Down
3 changes: 2 additions & 1 deletion src/ilastik_tasks/__FRACTAL_MANIFEST__.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
"type": "object",
"title": "IlastikPixelClassificationSegmentation"
},
"docs_info": "## ilastik_pixel_classification_segmentation\nRun Ilastik Pixel Classification on a Zarr image.\n"
"docs_info": "## ilastik_pixel_classification_segmentation\nRun Ilastik Pixel Classification on a Zarr image.\n",
"docs_link": "https://github.com/fractal-analytics-platform/fractal-ilastik-tasks"
}
],
"has_args_schemas": true,
Expand Down
6 changes: 5 additions & 1 deletion src/ilastik_tasks/dev/create_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
if __name__ == "__main__":
PACKAGE = "ilastik_tasks"
AUTHORS = "Lorenzo Cerrone"
create_manifest(package=PACKAGE, authors=AUTHORS)
docs_link = "https://github.com/fractal-analytics-platform/fractal-ilastik-tasks"
if docs_link:
create_manifest(package=PACKAGE, authors=AUTHORS, docs_link=docs_link)
else:
create_manifest(package=PACKAGE, authors=AUTHORS)

0 comments on commit 97f1bfd

Please sign in to comment.