Skip to content

Commit 05107ee

Browse files
committed
fix(npm): remove dry run
1 parent a526058 commit 05107ee

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
go-version: ${{ env.GO_VERSION }}
3131
- name: Build
3232
run: make build-all-platforms
33-
- name: Test
34-
run: make test
3533
- name: Upload artifacts
3634
uses: softprops/action-gh-release@v2
3735
with:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ npm-publish: npm ## Publish the npm packages
7373
cd npm/$$DIRNAME; \
7474
echo '//registry.npmjs.org/:_authToken=\$(NPM_TOKEN)' >> .npmrc; \
7575
jq '.version = "$(NPM_VERSION)"' package.json > tmp.json && mv tmp.json package.json; \
76-
echo npm publish; \
76+
npm publish; \
7777
cd ../..; \
7878
))
7979
echo '//registry.npmjs.org/:_authToken=\$(NPM_TOKEN)' >> ./npm/.npmrc
8080
jq '.version = "$(NPM_VERSION)"' ./npm/package.json > tmp.json && mv tmp.json ./npm/package.json; \
8181
jq '.optionalDependencies |= with_entries(.value = "$(NPM_VERSION)")' ./npm/package.json > tmp.json && mv tmp.json ./npm/package.json; \
82-
cd npm && echo npm publish
82+
cd npm && npm publish
8383

8484
.PHONY: test
8585
test: ## Run the tests

0 commit comments

Comments
 (0)