Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #241 from hickeyma/fix/rollback-docker-build
Browse files Browse the repository at this point in the history
Rollback on docker build removal
  • Loading branch information
hickeyma authored Jul 15, 2024
2 parents 2732035 + ffd7a0c commit 2528f0b
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ workflows:
untagged-build:
jobs:
- lint
- untagged-build
tagged-build:
jobs:
- lint
- tagged-build:
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
jobs:
lint:
docker:
Expand All @@ -18,3 +24,25 @@ jobs:
command: |
shellcheck -x scripts/tag.sh
shellcheck -x scripts/install_plugin.sh
untagged-build:
docker:
- image: cimg/go:1.22
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- checkout
- run:
command: make build
no_output_timeout: 20m
tagged-build:
docker:
- image: cimg/go:1.22
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- checkout
- run:
command: curl -sfL https://goreleaser.com/static/run | bash
no_output_timeout: 40m

0 comments on commit 2528f0b

Please sign in to comment.