chore(release): update release workflow to use 'other' branch

This commit is contained in:
Prad Nukala 2025-01-07 15:26:06 -05:00
parent 405d74df4a
commit 55346cc001
4 changed files with 18 additions and 4 deletions

View File

@ -4,8 +4,7 @@ name: Deploy @onsonr/es to npm
on: on:
push: push:
branches: branches:
- "master" - "other"
- "main"
jobs: jobs:
release: release:

View File

@ -3,7 +3,7 @@ name: Deploy CDN WebComponents
on: on:
push: push:
branches: branches:
- "master" - "other"
jobs: jobs:
deploy-docs: deploy-docs:

View File

@ -19,6 +19,17 @@ tasks:
- devbox run publish - devbox run publish
silent: true silent: true
nebula:bump:
dir: .
internal: true
cmds:
- devbox run bump
- git add .
- git commit -m "(chore) bump version"
- git tag $(cat package.json | jq -r .version)
- git push --follow-tags
silent: true
esclient:build: esclient:build:
dir: ./libs/es-client dir: ./libs/es-client
cmds: cmds:
@ -39,5 +50,6 @@ tasks:
- devbox run bump - devbox run bump
- git add . - git add .
- git commit -m "(chore) bump version" - git commit -m "(chore) bump version"
- git push - git tag $(cat package.json | jq -r .version)
- git push --follow-tags
silent: true silent: true

View File

@ -14,6 +14,9 @@
], ],
"publish": [ "publish": [
"bun run publish" "bun run publish"
],
"bump": [
"bun version patch"
] ]
} }
} }