Skip to content

Commit

Permalink
Publish make targets
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Jun 23, 2024
1 parent 6dd8a3c commit da7c7df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ notify:
curl -X POST -H 'Content-type: application/json' --data '{"text":"'"[GOBAN] $$VERSION $$MSG"'"}' $(SLACK_WEBHOOK)

publish_npm: build
make -C engine/ publish
yarn publish ./
cd engine/; yarn publish ./

upload_to_cdn:
rm -Rf deployment-staging-area;
Expand Down
5 changes: 4 additions & 1 deletion engine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ all:
@echo "To publish use make [publish|publish-beta]"

publish-beta:
yarn publish --no-git-tag-version --tag beta ./
yarn publish --no-git-tag-version --tag beta ./

publish:
yarn publish --no-git-tag-version ./
2 changes: 1 addition & 1 deletion engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goban-engine",
"version": "0.8.1-beta.3",
"version": "0.8.1",
"description": "",
"main": "goban-engine.js",
"types": "goban-engine.d.ts",
Expand Down

0 comments on commit da7c7df

Please sign in to comment.