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 c91fc5a commit 412785dCopy full SHA for 412785d
.github/workflows/nix.yml
@@ -32,10 +32,10 @@ jobs:
32
run: |
33
out_path="$(nix eval --raw .#devShells.x86_64-linux.default.outPath)"
34
if nix path-info --store "$CACHE_URL" "$out_path" &>/dev/null; then
35
- echo "cached=true"
+ echo "cached=true" >> "$GITHUB_OUTPUT"
36
else
37
- echo "cached=false"
38
- fi >> "$GITHUB_OUTPUT"
+ echo "cached=false" >> "$GITHUB_OUTPUT"
+ fi
39
40
- name: 📦 Build Nix development shell
41
if: steps.cache-check.outputs.cached == 'false'
0 commit comments