Skip to content

Commit 2aaf1c1

Browse files
authored
Remove publish step from circleci config (#39)
1 parent 3b33fe0 commit 2aaf1c1

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

.circleci/config.yml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
version: 2
2+
23
jobs:
34
build:
45
docker:
@@ -34,30 +35,8 @@ jobs:
3435
name: run contract tests
3536
command: make run-contract-tests
3637

37-
publish:
38-
docker:
39-
- image: circleci/rust:latest
40-
41-
steps:
42-
- checkout
43-
44-
- run:
45-
name: cargo publish
46-
command: cargo publish --verbose --token $CRATES_IO_TOKEN
47-
4838
workflows:
4939
version: 2
50-
build-publish:
40+
build:
5141
jobs:
52-
- build:
53-
filters:
54-
tags:
55-
only: /.*/
56-
- publish:
57-
filters:
58-
branches:
59-
ignore: /.*/
60-
tags:
61-
only: /v.*/
62-
requires:
63-
- build
42+
- build

0 commit comments

Comments
 (0)