name: "Upload build artifacts" description: "Upload build artifacts" runs: using: "composite" steps: - name: Save dist to cache uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: dist key: dist-${{ github.run_id }}-${{ github.run_attempt }} - name: Save nxcache to cache uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: nxcache key: nxcache-${{ github.run_id }}-${{ github.run_attempt }} - name: Save node_modules to cache uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: node_modules key: node-modules-${{ github.run_id }}-${{ github.run_attempt }}