Skip to content

Commit eb64313

Browse files
committed
Fix comparation
1 parent 4cb8984 commit eb64313

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646
- attach_workspace: { at: . }
4747
- restore_cache:
4848
key: deps-{{ checksum "yarn.lock" }}
49+
- run:
50+
name: Authenticate npm
51+
command: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
4952
- run:
5053
name: Publish updated packages
5154
command: make publish

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ ifneq ($(shell git rev-parse --abbrev-ref HEAD),master)
9393
endif
9494

9595
$(eval export INTEGRATIONS := $(shell $(OPERATIONS_PREFIX)list-new-releases))
96-
ifneq ($(INTEGRATIONS),)
96+
ifneq ($(INTEGRATIONS),"")
9797
@echo Publishing $(INTEGRATIONS)
9898
@for integration in $(INTEGRATIONS); do \
9999
npm publish integrations/$$integration; \

0 commit comments

Comments
 (0)