aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-12 21:32:06 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-12 21:32:06 +0100
commit898192d46a0012f77f07afba7145b96d734a707c (patch)
tree964e877adb8df26a9c951c242e34ed581098004d
parentedcd0e51b3e0a6d52a560f293b7e6a08999cfd0c (diff)
Get rid of signing code
-rw-r--r--.build.yml3
-rw-r--r--Makefile2
2 files changed, 0 insertions, 5 deletions
diff --git a/.build.yml b/.build.yml
index 256eca3..afe1fce 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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
diff --git a/Makefile b/Makefile
index 4c077dd..2c1d4b3 100644
--- a/Makefile
+++ b/Makefile
@@ -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)