mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/cdf6c1fa76f9f475f3d7449005a359c84ca0f306...668228422ae6a00e4ad889ee87cd7109ec5666a7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
name: "Download build artifacts"
|
|
description: "Download build artifacts"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Restore dist from cache
|
|
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
|
|
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
|
|
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
|
|
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
|