diff --git a/.github/actions/download-manifests/action.yml b/.github/actions/download-manifests/action.yml index 05b5db39..dd5855f1 100644 --- a/.github/actions/download-manifests/action.yml +++ b/.github/actions/download-manifests/action.yml @@ -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 }}