1
0
Fork 0
mirror of https://git.sr.ht/~goorzhel/turboprop synced 2024-12-14 11:37:37 +00:00
turboprop/Makefile

8 lines
212 B
Makefile
Raw Normal View History

all:
2023-11-22 07:19:46 +00:00
nix build -vL --show-trace
2023-11-24 01:04:32 +00:00
.PHONY: secrets
secrets:
2023-11-24 01:04:32 +00:00
mkdir -p secrets
for i in $$(find releases system -name "*sops.yaml"); do bin/decrypt_secret $$i > ./secrets/$$(tr / - <<< $$(dirname $$i)).yaml; done