head doesn’t actually work
This commit is contained in:
parent
4e69cb009b
commit
f3a40f58f4
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -85,7 +85,7 @@ jobs:
|
||||||
OUT_PATH=$(nix show-derivation $DRV_PATH | jq -r ".\"$DRV_PATH\".outputs.out.path")
|
OUT_PATH=$(nix show-derivation $DRV_PATH | jq -r ".\"$DRV_PATH\".outputs.out.path")
|
||||||
# check if we already built it
|
# check if we already built it
|
||||||
NARINFO=$(echo $OUT_PATH | sed 's|/| |g' | sed 's|-| |g' | awk '{print $3}')
|
NARINFO=$(echo $OUT_PATH | sed 's|/| |g' | sed 's|-| |g' | awk '{print $3}')
|
||||||
if curl --output /dev/null --silent --head --fail "https://cache.chir.rs/$NARINFO.narinfo"; then
|
if curl --output /dev/null --silent --fail "https://cache.chir.rs/$NARINFO.narinfo"; then
|
||||||
echo "${{ matrix.package }} already built. Skipping"
|
echo "${{ matrix.package }} already built. Skipping"
|
||||||
else
|
else
|
||||||
nix-store -r $DRV_PATH
|
nix-store -r $DRV_PATH
|
||||||
|
|
Reference in a new issue