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 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 :
Original file line number Diff line number Diff 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
8585test : # # Run the tests
You can’t perform that action at this time.
0 commit comments