Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit c54ed14

Browse files
committed
Fix circleci ENV
Fix env var passing to publisher script. Signed-off-by: Ben Kochie <[email protected]>
1 parent e6a4364 commit c54ed14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
fi
4747
release:
4848
executor: publisher
49-
environment:
50-
PROJECT_USERNAME: $CIRCLE_PROJECT_USERNAME
51-
PROJECT_REPONAME: $CIRCLE_PROJECT_REPONAME
5249
steps:
5350
- checkout
54-
- run: create_release
51+
- run: |
52+
PROJECT_USERNAME="${CIRCLE_PROJECT_USERNAME}" \
53+
PROJECT_REPONAME="${CIRCLE_PROJECT_REPONAME}" \
54+
create_release
5555
5656
galaxy:
5757
executor: python

0 commit comments

Comments
 (0)