From 19a26051d1551b2fcb8bb48428715170bb0b2243 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 25 Oct 2023 21:05:24 +0200 Subject: [PATCH] website-build: Makefile: rename upload target to deploy. Guix is being used to build the website and Guix has the 'guix deploy' command, so this should look more familiar to people using Guix. Signed-off-by: Denis 'GNUtoo' Carikli Acked-by: Adrien 'neox' Bourmault --- website-build/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website-build/Makefile.am b/website-build/Makefile.am index 80814a0..6f197b3 100644 --- a/website-build/Makefile.am +++ b/website-build/Makefile.am @@ -14,7 +14,7 @@ # along with this program. If not, see . DOMAIN := libreboot.at -.PHONY: all build check help upload website.tar.gz +.PHONY: all build check help deploy website.tar.gz all: website.tar.gz @@ -78,7 +78,7 @@ help: "help # Print this help" \ "test # run lighttpd on localhost:8080" \ "check # Run automatic tests" \ - "upload # Upload the website to https://$(DOMAIN)" \ + "deploy # Deploy the website to https://$(DOMAIN)" \ "website.tar.gz # Create a tarball of the website" if WANT_GUIX @@ -108,7 +108,7 @@ test: endif endif -upload: website.tar.gz +deploy: website.tar.gz curl \ --oauth2-bearer `cat id_oauth2_bearer` \ -Fcontent=@website.tar.gz \