1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

Generate installer script for each PR/push

This works by using Cachix feature of serving a file from
a store path.
This commit is contained in:
Domen Kožar 2021-02-15 10:20:54 +00:00
parent 4e98f0345c
commit ae4260f0a7
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246
3 changed files with 89 additions and 35 deletions

View file

@ -0,0 +1,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"