Skip to content

Commit 596cd4e

Browse files
authored
Merge pull request #373 from iishiishii/main
Fix: correct url to fetch recipe and increase timeout
2 parents 7c7dff0 + 780de5f commit 596cd4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/generate-doi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
publish-doi:
2828
needs: get-updated-apps
2929
runs-on: ubuntu-22.04
30-
timeout-minutes: 30
30+
timeout-minutes: 1200
3131
if: ${{ needs.get-updated-apps.outputs.app_batches != '[]' }}
3232
strategy:
3333
fail-fast: false

.github/workflows/publish-doi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_license(container_name, gh_token):
1616
}
1717
# Get the recipe name from the container name
1818
recipe_name = container_name.split("_")[0]
19-
url = f" https://api.github.com/repos/iishiishii/neurocontainers/contents/recipes/{recipe_name}/build.yaml"
19+
url = f" https://api.github.com/repos/Neurodesk/neurocontainers/contents/recipes/{recipe_name}/build.yaml"
2020
try:
2121
response = requests.get(url, headers=headers)
2222
response.raise_for_status()

0 commit comments

Comments
 (0)