File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -66,21 +66,12 @@ jobs:
66
66
ref : ${{ inputs.ref_for_scheduled_build }}
67
67
path : ${{ env.repo_path }}
68
68
69
- - name : Hash pixi dependencies
70
- id : hash
71
- shell : pwsh
72
- run : |
73
- $input = "${{ inputs.pixi_dependencies }}"
74
- $bytes = [System.Text.Encoding]::UTF8.GetBytes($input)
75
- $hash = [System.BitConverter]::ToString([System.Security.Cryptography.SHA256]::Create().ComputeHash($bytes)) -replace "-", ""
76
- echo "hash=$hash" >> $env:GITHUB_OUTPUT
77
-
78
69
- name : Restore pixi.lock
79
70
uses : actions/cache/restore@v4
80
71
id : cache
81
72
with :
82
73
path : pixi.lock
83
- key : pixi|${{ inputs.ros_distro }}|${{ steps.hash.outputs.hash }}
74
+ key : pixi|${{ inputs.ros_distro }}
84
75
85
76
- name : Bootstrap pixi and patch manifest file
86
77
# https://docs.ros.org/en/rolling/Installation/Windows-Install-Binary.html
@@ -142,7 +133,7 @@ jobs:
142
133
if : ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
143
134
with :
144
135
path : pixi.lock
145
- key : pixi|${{ inputs.ros_distro }}|${{ steps.hash.outputs.hash }}
136
+ key : pixi|${{ inputs.ros_distro }}
146
137
147
138
- name : Upload pixi lock file
148
139
You can’t perform that action at this time.
0 commit comments