File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 30
30
go-version : ${{ env.GO_VERSION }}
31
31
- name : Build
32
32
run : make build-all-platforms
33
- - name : Test
34
- run : make test
35
33
- name : Upload artifacts
36
34
uses : softprops/action-gh-release@v2
37
35
with :
Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ npm-publish: npm ## Publish the npm packages
73
73
cd npm/$$ DIRNAME; \
74
74
echo ' //registry.npmjs.org/:_authToken=\$(NPM_TOKEN)' >> .npmrc; \
75
75
jq ' .version = "$(NPM_VERSION)"' package.json > tmp.json && mv tmp.json package.json; \
76
- echo npm publish; \
76
+ npm publish; \
77
77
cd ../..; \
78
78
))
79
79
echo ' //registry.npmjs.org/:_authToken=\$(NPM_TOKEN)' >> ./npm/.npmrc
80
80
jq ' .version = "$(NPM_VERSION)"' ./npm/package.json > tmp.json && mv tmp.json ./npm/package.json; \
81
81
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
83
83
84
84
.PHONY : test
85
85
test : # # Run the tests
You can’t perform that action at this time.
0 commit comments