Skip to content

Commit

Permalink
Remove publish step from circleci config (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 authored Jul 18, 2022
1 parent 3b33fe0 commit 2aaf1c1
Showing 1 changed file with 3 additions and 24 deletions.
27 changes: 3 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version: 2

jobs:
build:
docker:
Expand Down Expand Up @@ -34,30 +35,8 @@ jobs:
name: run contract tests
command: make run-contract-tests

publish:
docker:
- image: circleci/rust:latest

steps:
- checkout

- run:
name: cargo publish
command: cargo publish --verbose --token $CRATES_IO_TOKEN

workflows:
version: 2
build-publish:
build:
jobs:
- build:
filters:
tags:
only: /.*/
- publish:
filters:
branches:
ignore: /.*/
tags:
only: /v.*/
requires:
- build
- build

0 comments on commit 2aaf1c1

Please sign in to comment.