Add `./script/trigger-release {nightly|stable|preview}`
This command can be run regardless of the state of your local git
repository, and it
either triggers a workflow run of `bump_patch_version.yml` (for
stable/preview) or
it force pushes the nightly tag.
Also add some docs on releases to explain all of this.
Release Notes:
- N/A
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git fetch origin main:tags/nightly -f
|
|
git log --oneline -1 nightly
|
|
git push -f origin nightly
|