7fc1356212
* ci: added commit lint, build check, test and release * refactor: fix compilation errors * ci: add checkout to the tests * test: resolved issues with running tests * chore: addressed PR comments * chore: renamed package-name in release-please
21 lines
509 B
YAML
21 lines
509 B
YAML
# On each new commit to master, create/update a PR with release
|
|
# automatically bumps version and creates changelog as per conventional commits
|
|
name: Release Github
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: GoogleCloudPlatform/release-please-action@v2
|
|
id: release
|
|
with:
|
|
token: ${{ secrets.REPO_GHA_PAT }}
|
|
release-type: node
|
|
package-name: bee-status
|
|
bump-minor-pre-major: true
|