From f30805accd31728e497334a6937fd08f795f98a2 Mon Sep 17 00:00:00 2001 From: Fabian Wechselberger Date: Wed, 21 Jun 2023 23:10:31 +0200 Subject: [PATCH] CircleCi: Bump go version to 1.20, removed unnecessary run, added run for frontend. --- .circleci/config.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 82a1e99..5d199e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,10 @@ jobs: - restore_cache: keys: - go-mod-latest-v4-{{ checksum "go.sum" }} + - run: + name: Build Frontend + command: | + make frontend - run: name: Install Dependencies command: | @@ -51,19 +55,13 @@ jobs: fi working_directory: ~/repo docker: - - image: cimg/go:1.19 + - image: cimg/go:1.20-node workflows: build-and-release: jobs: #--------------- BUILD ---------------# - build-latest: - filters: - tags: - only: /^v.*/ - - build-116: - requires: - - build-latest filters: tags: only: /^v.*/ \ No newline at end of file