From 9bce86e4c49cb7e9a660f715cb1a40e7cd1dca7c Mon Sep 17 00:00:00 2001 From: Cristian Balas Date: Tue, 14 Dec 2021 10:27:26 +0200 Subject: [PATCH] [CI] Use new release versioning scheme (#497) --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aee53c6a8..0babaaf9b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,7 +23,7 @@ workflows: context: main-builds filters: tags: - only: /^v.*/ + only: /^[0-9]+\.[0-9]+\.[0-9]+$/ branches: ignore: /.*/ ci-test: @@ -37,9 +37,9 @@ workflows: jobs: test_server: docker: - - image: 'cimg/node:16.13' - - image: 'circleci/redis:6' - - image: 'cimg/postgres:12.8' + - image: "cimg/node:16.13" + - image: "circleci/redis:6" + - image: "cimg/postgres:12.8" environment: POSTGRES_DB: speckle2_test POSTGRES_PASSWORD: speckle @@ -49,9 +49,9 @@ jobs: DATABASE_URL: "postgres://speckle:speckle@localhost:5432/speckle2_test" PGDATABASE: speckle2_test PGUSER: speckle - SESSION_SECRET: 'keyboard cat' - STRATEGY_LOCAL: 'true' - CANONICAL_URL: 'http://localhost:3000' + SESSION_SECRET: "keyboard cat" + STRATEGY_LOCAL: "true" + CANONICAL_URL: "http://localhost:3000" # Note: some of these commands need to be run in the server package folder. steps: - checkout