-
Notifications
You must be signed in to change notification settings - Fork 9
Home
ivmartel edited this page Jan 22, 2025
·
11 revisions
Welcome to the dwv-simplistic wiki!
For now the wiki is used to store unordered notes...
These are the steps needed to create a release.
- checkout
main
:git checkout main
- update:
git pull
- update the version number to '#.#.#' in
package.json
andservice-worker.js
- build:
yarn run build
- commit:
git commit -a -m 'Release v#.#.#'
- push:
git push origin main
- create a github release with the 'v#.#.#' tag on
main
(this will trigger the CI and create the stable build on thegh-pages
branch - publish to npm:
npm publish
- checkout
gh-pages
:git checkout gh-pages
- update:
git pull
- zip the
demo/stable
folder and add it to the release assets
- checkout
main
:git checkout main
- update the version number to '#.#.#-beta.0' in
package.json
andservice-worker.js
- commit:
git commit -a -m 'Bump version to v#.#.#-beta.0'
- push:
git push origin main