Skip to content

Commit

Permalink
CI: fix release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderzobnin committed Sep 2, 2020
1 parent 98dab9a commit 89e885b
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,16 +203,34 @@ jobs:
make-release-commit:
working_directory: ~/alexanderzobnin/grafana-zabbix
docker:
- image: circleci/golang:1.14-node
- image: circleci/golang:1.13-node
environment:
CI_GIT_USER: CircleCI
CI_GIT_EMAIL: [email protected]
steps:
- add_ssh_keys:
fingerprints:
- dc:7e:54:e0:aa:56:4d:e5:60:7b:f3:51:24:2d:d3:29
- attach_workspace:
at: ~/alexanderzobnin
- "dc:7e:54:e0:aa:56:4d:e5:60:7b:f3:51:24:2d:d3:29"
- checkout
- restore_cache:
keys:
- dependency-cache-npm-{{ checksum "yarn.lock" }}
- restore_cache:
keys:
- dependency-cache-go-{{ checksum "go.sum" }}
- run:
name: Install Dependencies
command: 'make install'
no_output_timeout: 15m
- save_cache:
key: dependency-cache-npm-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- save_cache:
key: dependency-cache-go-{{ checksum "go.sum" }}
paths:
- ./vendor
- /go/pkg/mod
- run: ./.circleci/make-release.sh

build-docs:
Expand Down Expand Up @@ -246,7 +264,7 @@ jobs:
steps:
- add_ssh_keys:
fingerprints:
- dc:7e:54:e0:aa:56:4d:e5:60:7b:f3:51:24:2d:d3:29
- "dc:7e:54:e0:aa:56:4d:e5:60:7b:f3:51:24:2d:d3:29"
- checkout
- attach_workspace:
at: ../gh-pages
Expand Down Expand Up @@ -312,7 +330,7 @@ workflows:
filters: *filter-only-release
- make-release-commit:
requires:
- package-plugin
- get-plugin
filters: *filter-only-release

build-docs:
Expand Down

0 comments on commit 89e885b

Please sign in to comment.