Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit e119ca0

Browse files
committed
release: v0.0.0-dev.18
1 parent d097afa commit e119ca0

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Makefile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
release:
2+
git checkout develop
3+
git pull origin develop
4+
$(eval VERSION ?= $(shell npm version --no-git-tag-version prerelease))
5+
git checkout -b release/$(VERSION)
6+
git add .
7+
git commit -m "release: $(VERSION)"
8+
git push origin release/$(VERSION)
9+
gh pr create \
10+
--title "release: $(VERSION) to DEVELOP" \
11+
--body "" \
12+
--base develop \
13+
--head release/$(VERSION)
14+
gh pr create \
15+
--title "release: $(VERSION) to MASTER" \
16+
--body "" \
17+
--base master \
18+
--head release/$(VERSION)

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@airgrid/edgekit",
3-
"version": "0.0.0-dev.17",
3+
"version": "0.0.0-dev.18",
44
"homepage": "https://edgekit.org/",
55
"author": "AirGrid <https://airgrid.io>",
66
"license": "MIT",

0 commit comments

Comments
 (0)