Renamed chart dir to match chart

This commit is contained in:
Jakub Vavřík
2021-01-28 17:56:32 +01:00
parent ad66ce3152
commit d778c352d3
15 changed files with 0 additions and 41 deletions

View File

@@ -1,39 +0,0 @@
version: 2
jobs:
build:
docker: # run the steps with Docker
- image: circleci/golang:1.15
auth:
username: javamachr
password: $DOCKERHUB_PASSWORD
steps:
- checkout # check out source code to working directory
- restore_cache:
keys:
- go-mod-v4-{{ checksum "go.sum" }}
- run:
name: Install requirements
command: make install-requirements
- run:
name: Generate sources
command: make generate
- run:
name: Docker login
command: make docker-login
- run:
name: Build docker images
command: make docker-images
- run:
name: Build docker images
command: make docker-images
- run:
name: Push docker images
command: make docker-push