Skip to content

Commit 33c980a

Browse files
committed
chore: add justfile
1 parent 506246c commit 33c980a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

justfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[group('github')]
2+
release-latest VERSION:
3+
./scripts/release/main.ts --setupLocal --version {{ VERSION }}
4+
gh workflow run .github/workflows/release.yaml -f version={{ VERSION }} -f latest=true --ref $(git branch --show-current)
5+
echo 'Once workflow is complete, manually merge Release Please'
6+
7+
[group('github')]
8+
release-nolatest VERSION:
9+
./scripts/release/main.ts --setupLocal --version {{ VERSION }} --no-latest
10+
gh workflow run .github/workflows/release.yaml -f version={{ VERSION }} -f latest=false --ref $(git branch --show-current)
11+
echo 'Once workflow is complete, manually merge Release Please'
12+

0 commit comments

Comments
 (0)