mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
Bumps [actions/cache/save](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [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/27d5ce7f107fe9357f9df03efb73ab90386fccae...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache/save dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
767 B
YAML
26 lines
767 B
YAML
name: "Upload build artifacts"
|
|
description: "Upload build artifacts"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Save dist to cache
|
|
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
with:
|
|
path: dist
|
|
key: dist-${{ github.run_id }}-${{ github.run_attempt }}
|
|
|
|
- name: Save nxcache to cache
|
|
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
with:
|
|
path: nxcache
|
|
key: nxcache-${{ github.run_id }}-${{ github.run_attempt }}
|
|
|
|
- name: Save node_modules to cache
|
|
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
with:
|
|
path: node_modules
|
|
key: node-modules-${{ github.run_id }}-${{ github.run_attempt }}
|
|
|
|
|