aboutsummaryrefslogtreecommitdiff
path: root/scripts/prepare-installer-for-github-actions
blob: 4b994a7532c395089bdfd152a3e0494704a1a3d9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

set -e

script=$(nix-build -A outputs.hydraJobs.installerScriptForGHA --no-out-link)
installerHash=$(echo "$script" | cut -b12-43 -)

installerURL=https://$CACHIX_NAME.cachix.org/serve/$installerHash/install

echo "::set-output name=installerURL::$installerURL"