diff options
| author | Ben Woodward <ben@bdw.to> | 2021-02-28 10:34:29 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-28 10:34:29 -0800 |
| commit | afa5548e8dd9a4665e52acad65f9359e41d367b5 (patch) | |
| tree | 2bf0ad9604fea39104dd40c7e5737fe445afd600 /.circleci/config.yml | |
| parent | 1fe19f9615891a8d6f7d5a8fc45c4de36172c16c (diff) | |
Github Actions CI (#20)
Replace CircleCI with Github Actions
Diffstat (limited to '.circleci/config.yml')
| -rw-r--r-- | .circleci/config.yml | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f40a34c..0000000 --- a/.circleci/config.yml +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | version: 2 | ||
| 2 | jobs: | ||
| 3 | build: | ||
| 4 | docker: | ||
| 5 | - image: circleci/node | ||
| 6 | steps: | ||
| 7 | - checkout | ||
| 8 | - setup_remote_docker: | ||
| 9 | version: 19.03.13 | ||
| 10 | - run: make build | ||
| 11 | |||
| 12 | build_and_publish: | ||
| 13 | docker: | ||
| 14 | - image: circleci/node | ||
| 15 | steps: | ||
| 16 | - checkout | ||
| 17 | - setup_remote_docker: | ||
| 18 | version: 19.03.13 | ||
| 19 | - run: make build | ||
| 20 | - run: make publish | ||
| 21 | |||
| 22 | workflows: | ||
| 23 | version: 2 | ||
| 24 | build: | ||
| 25 | jobs: | ||
| 26 | - build: | ||
| 27 | filters: | ||
| 28 | branches: | ||
| 29 | ignore: master | ||
| 30 | - build_and_publish: | ||
| 31 | filters: | ||
| 32 | branches: | ||
| 33 | only: master | ||
