We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506246c commit 33c980aCopy full SHA for 33c980a
justfile
@@ -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
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
12
0 commit comments