]> git.immae.eu Git - github/fretlink/terraform-provider-mailgun.git/commitdiff
add index.html to ghpages
authorAlexandre Garand <alexandre.garand@fretlink.com>
Mon, 8 Jul 2019 09:30:44 +0000 (11:30 +0200)
committerAlexandre Garand <alexandre.garand@fretlink.com>
Mon, 8 Jul 2019 10:15:34 +0000 (12:15 +0200)
created index.html
update the script to add it in the website directory

GNUmakefile
index.html [new file with mode: 0644]
scripts/launch-website.sh

index fe6e28c931bd23928e0f4c320c18fcb2d394f462..e31a939a3b607e373c04eb8d6603ddb11bf663ec 100644 (file)
@@ -62,5 +62,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
 endif
        @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
 
-.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test
+.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test website-githubpages
 
diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..550c3e9
--- /dev/null
@@ -0,0 +1 @@
+<meta http-equiv="refresh" content="0; url=docs/providers/mailgun/index.html" />
index f146e75d62cafad6bf1cbce1f1ba2bf83194ea47..a6365655b081646062011ee6d221260ec424934d 100755 (executable)
@@ -5,6 +5,7 @@ wget --recursive --no-parent --domains localhost --page-requisites --html-extens
 
 rm -rf terraform-provider-website;
 mv localhost:4567/ terraform-provider-website;
+mv index.html terraform-provider-website/index.html
 
 docker stop "$(docker ps -q)") &