mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-15 22:12:57 +00:00
Fix handling boolean variable in the action
This commit is contained in:
60
.github/actions/download-manifests/action.yml
vendored
60
.github/actions/download-manifests/action.yml
vendored
@@ -41,97 +41,97 @@ runs:
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: minimal-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: minimal-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: scipy-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: scipy-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: r-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: r-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: julia-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: julia-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: tensorflow-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: tensorflow-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: datascience-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: datascience-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: pyspark-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: pyspark-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: all-spark-notebook-aarch64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: all-spark-notebook-x86_64-history_line
|
||||
path: ${{ inputs.hist-line-dir }}
|
||||
@@ -158,85 +158,85 @@ runs:
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: minimal-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: minimal-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: scipy-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: scipy-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: r-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: r-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: tensorflow-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: tensorflow-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: datascience-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: datascience-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: pyspark-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: pyspark-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: all-spark-notebook-aarch64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
- name: Download artifact 📥
|
||||
uses: actions/download-artifact@v3
|
||||
if: ${{ !inputs.fast-build == 'true' }}
|
||||
if: inputs.fast-build == 'false'
|
||||
with:
|
||||
name: all-spark-notebook-x86_64-manifest
|
||||
path: ${{ inputs.manifest-dir }}
|
||||
|
Reference in New Issue
Block a user