name: "Download build artifacts" description: "Download build artifacts" runs: using: "composite" steps: - name: Restore dist from cache uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: dist key: dist-${{ github.run_id }}-${{ github.run_attempt }} restore-keys: | dist-${{ github.run_id }}- fail-on-cache-miss: true - name: Restore nxcache from cache uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: nxcache key: nxcache-${{ github.run_id }}-${{ github.run_attempt }} restore-keys: | nxcache-${{ github.run_id }}- fail-on-cache-miss: true - name: Restore node_modules from cache uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: node_modules key: node-modules-${{ github.run_id }}-${{ github.run_attempt }} restore-keys: | node-modules-${{ github.run_id }}- fail-on-cache-miss: true - name: show files shell: bash run: | pwd ls -lha echo "====DIST====" find dist -maxdepth 1 -type d echo "====NXCACHE====" find nxcache -maxdepth 1 -type d echo "====ADF====" find node_modules/@alfresco/ -maxdepth 1 -type d