oktopus/.circleci/config.yml
2024-04-13 13:24:34 -03:00

22 lines
474 B
YAML

version: 2.1
jobs:
release:
docker:
- image: cimg/base:2022.09
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
steps:
- checkout
- setup_remote_docker
- run:
name: Build and Push application Docker image
command: |
cd build && make release
workflows:
build_and_deploy:
jobs:
- release:
filters:
branches:
only: dev