[CI] Use new release versioning scheme (#497)

This commit is contained in:
Cristian Balas
2021-12-14 10:27:26 +02:00
committed by GitHub
parent c6109f5903
commit 9bce86e4c4
+7 -7
View File
@@ -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