From a55636787e7d0557cbc5972dcc5e36afc5735b91 Mon Sep 17 00:00:00 2001 From: Elad Kaplan Date: Fri, 13 Sep 2024 10:32:26 +0300 Subject: [PATCH] move env var to flags (#744) * move env var to flags --- .github/workflows/e2e.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 3d9d74900..0431fb66b 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -20,7 +20,7 @@ jobs: toolchain: nightly - run: | cargo install loco-cli - ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=saas LOCO_TEMPLATE=saas loco new + ALLOW_IN_GIT_REPO=true loco new --template saas --name saas --db sqlite --bg async --assets serverside - run: | cargo build working-directory: ./saas @@ -40,7 +40,7 @@ jobs: toolchain: nightly - run: | cargo install loco-cli - ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=restapi LOCO_TEMPLATE=rest-api loco new + ALLOW_IN_GIT_REPO=true loco new --template rest-api --name restapi --db sqlite --bg async - run: | cargo build working-directory: ./restapi @@ -58,10 +58,9 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: toolchain: nightly - override: true - run: | cargo install loco-cli - ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=lightweight LOCO_TEMPLATE=lightweight-service loco new + ALLOW_IN_GIT_REPO=true loco new --template lightweight-service --name lightweight --db sqlite --bg async - run: | cargo build working-directory: ./lightweight