Skip to content

Commit

Permalink
Fix stage BMZ notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanHCenalmor committed Dec 13, 2024
1 parent a4ee436 commit 656e46f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/export_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.9"
- name: Install requirements
run: pip install -r Tools/CI_requirements.txt
- name: Export the notebook and create a ZIP file with it
Expand All @@ -25,9 +25,9 @@ jobs:
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: '${{ inputs.notebook_name }}.zip'
path: './tmp/${{ inputs.notebook_name }}.zip'
name: "${{ inputs.notebook_name }}.zip"
path: "./tmp/${{ inputs.notebook_name }}.zip"
- name: Output artifact URL
run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
run: echo "Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}"
- name: Stage the ZIP file into BioImage.IO
run: python3 Tools/stage_bmz_notebook.py --id "${{ inputs.notebook_name }}" --url ${{ steps.artifact-upload-step.outputs.artifact-url }}'
run: python3 Tools/stage_bmz_notebook.py --id "${{ inputs.notebook_name }}" --url "${{ steps.artifact-upload-step.outputs.artifact-url }}"

0 comments on commit 656e46f

Please sign in to comment.