Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Commit

Permalink
fix: quickfix for ecs publish pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
moliva committed Nov 14, 2019
1 parent 415e711 commit c0ab0a3
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,19 +343,39 @@ workflows:
version: 2
build-deploy:
jobs:
- checkout
- checkout:
filters:
branches:
only: /(.*)/
tags:
only: /^\d+\.\d+\.\d(.*)/ # npm tag + latest

- build-unity:
requires:
- checkout
filters:
branches:
only: /(.*)/
tags:
only: /^\d+\.\d+\.\d(.*)/ # npm tag + latest
- build-kernel:
requires:
- checkout
filters:
branches:
only: /(.*)/
tags:
only: /^\d+\.\d+\.\d(.*)/ # npm tag + latest

- build:
requires:
- build-kernel
- build-unity
filters:
branches:
only: /(.*)/
tags:
only: /^\d+\.\d+\.\d(.*)/ # npm tag + latest

# explorer master + pr branch jobs (deploy to dev + pr dev)
- deploy-dev:
Expand Down

0 comments on commit c0ab0a3

Please sign in to comment.