diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 3d9d7490..0431fb66 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