mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 09:27:09 +00:00
chore(release): update release workflow to use 'other' branch
This commit is contained in:
parent
405d74df4a
commit
55346cc001
3
.github/workflows/cd.yml
vendored
3
.github/workflows/cd.yml
vendored
@ -4,8 +4,7 @@ name: Deploy @onsonr/es to npm
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "master"
|
- "other"
|
||||||
- "main"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -3,7 +3,7 @@ name: Deploy CDN WebComponents
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "master"
|
- "other"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy-docs:
|
deploy-docs:
|
||||||
|
14
Taskfile.yml
14
Taskfile.yml
@ -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
|
||||||
|
@ -14,6 +14,9 @@
|
|||||||
],
|
],
|
||||||
"publish": [
|
"publish": [
|
||||||
"bun run publish"
|
"bun run publish"
|
||||||
|
],
|
||||||
|
"bump": [
|
||||||
|
"bun version patch"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user