2021-02-15 10:20:54 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
script=$(nix-build -A outputs.hydraJobs.installerScriptForGHA --no-out-link)
|
2021-11-18 17:33:13 +00:00
|
|
|
installerHash=$(echo "$script" | cut -b12-43 -)
|
2021-02-15 10:20:54 +00:00
|
|
|
|
|
|
|
installerURL=https://$CACHIX_NAME.cachix.org/serve/$installerHash/install
|
|
|
|
|
|
|
|
echo "::set-output name=installerURL::$installerURL"
|