We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ea078 commit 066219aCopy full SHA for 066219a
.github/workflows/cache-pixi-lock.yml
@@ -2,6 +2,9 @@ name: Generate and cache Pixi lockfile
2
3
on:
4
workflow_call:
5
+ inputs:
6
+ pixi-version:
7
+ type: string
8
outputs:
9
cache-id:
10
description: "The lock file contents"
@@ -17,7 +20,7 @@ jobs:
17
20
- uses: actions/checkout@v5
18
21
with:
19
22
fetch-depth: 0
- sparse-checkout: pixi.toml
23
+ submodules: recursive
24
- name: Get current date
25
id: date
26
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
@@ -30,7 +33,7 @@ jobs:
30
33
- uses: prefix-dev/[email protected]
31
34
if: ${{ !steps.restore.outputs.cache-hit }}
32
35
- pixi-version: v0.49.0
36
+ pixi-version: ${{ inputs.pixi-version }}
37
run-install: false
38
- name: Run pixi lock
39
0 commit comments