diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-12 21:32:06 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-12 21:32:06 +0100 |
| commit | 898192d46a0012f77f07afba7145b96d734a707c (patch) | |
| tree | 964e877adb8df26a9c951c242e34ed581098004d | |
| parent | edcd0e51b3e0a6d52a560f293b7e6a08999cfd0c (diff) | |
Get rid of signing code
| -rw-r--r-- | .build.yml | 3 | ||||
| -rw-r--r-- | Makefile | 2 |
2 files changed, 0 insertions, 5 deletions
@@ -16,10 +16,7 @@ environment: secrets: - 89d3b676-25d6-4942-8231-38b73aa62bf6 - 0b0d3e5e-fbdc-41d0-97ed-ee654fe797ff - - 18661e65-8ab2-4d9e-99be-5476cd6296d8 tasks: - - import_key: | - gpg --batch --import ~/.privkey.asc - set_rust: | cd blog make set_rust @@ -17,7 +17,6 @@ build: prepare release: rpm tar @$(eval filename := $(app_name)-$(target)-$(channel)) rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) - rsync -avz $(filename).asc deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) $(architectures): ifneq ($(channel),) @@ -31,7 +30,6 @@ rpm: build tar: build @$(eval filename := $(app_name)-$(target)-$(channel)) tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name) - gpg --armor --output $(filename).asc --detach-sig $(filename).tar.gz package: $(architectures) |