From 9fc2e2a6eeabbf9c7b63422a59f14310f705e20a Mon Sep 17 00:00:00 2001 From: aurindam Date: Tue, 16 Jul 2024 15:23:42 +0200 Subject: [PATCH] Skip generating agreements when building website --- .github/workflows/deploy-releases.yml | 2 +- .github/workflows/deploy-slintpad.yml | 2 +- .github/workflows/deploy-snapshots.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-releases.yml b/.github/workflows/deploy-releases.yml index 422661151..e044aa92a 100644 --- a/.github/workflows/deploy-releases.yml +++ b/.github/workflows/deploy-releases.yml @@ -26,7 +26,7 @@ jobs: run: | mkdir -p website/output cd website - go run generator/generator.go + go run generator/generator.go -skip-agreements cp output/docs.html ../index.html cp output/404.html ../404.html cd .. diff --git a/.github/workflows/deploy-slintpad.yml b/.github/workflows/deploy-slintpad.yml index de381bcb8..0cc91c265 100644 --- a/.github/workflows/deploy-slintpad.yml +++ b/.github/workflows/deploy-slintpad.yml @@ -26,7 +26,7 @@ jobs: run: | mkdir -p website/output cd website - go run generator/generator.go + go run generator/generator.go -skip-agreements cp output/docs.html ../index.html cp output/404.html ../404.html cd .. diff --git a/.github/workflows/deploy-snapshots.yml b/.github/workflows/deploy-snapshots.yml index e3166cff3..79d481ca2 100644 --- a/.github/workflows/deploy-snapshots.yml +++ b/.github/workflows/deploy-snapshots.yml @@ -26,7 +26,7 @@ jobs: run: | mkdir -p website/output cd website - go run generator/generator.go + go run generator/generator.go -skip-agreements cp output/docs.html ../index.html cp output/404.html ../404.html cd ..