docker + circleci autobuild; fixed a bug when missing Projects directory

This commit is contained in:
2022-10-01 12:58:39 -06:00
parent 43f6ef72aa
commit ee6a1b0cbd
6 changed files with 109 additions and 1 deletions

24
.circleci/config.yml Normal file
View File

@ -0,0 +1,24 @@
---
version: 2.1
jobs:
deploy:
docker:
- img: cimg/base:stable
steps:
- checkout
- run: docker build . -t blaziken734/debugger -f .docker/Dockerfile
- run: echo $DOCKER_PASS | docker login -u $DOCKER_USER --password-stdin
- run: docker push blaziken734/debugger
workflows:
version: 2
main:
jobs:
- deploy:
context:
- yage-docker
filters:
branches:
only:
- main