From e887c78b3f8ec8529337b453b17f26d9ec4fc932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Sat, 8 Oct 2022 18:03:20 +0100 Subject: [PATCH] feat: new stable deploys --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bf43a67b..92bf4606 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,6 +88,16 @@ deploy-cloudfare-stable: - npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch stable dependencies: - build-wasm + only: + - stable + +deploy-cloudfare-prod: + stage: deploy + script: + - cd examples/web/dist + - npm_config_yes=true npx wrangler pages publish . --project-name=boytacean --branch prod + dependencies: + - build-wasm only: - tags -- GitLab