Skip to content

Commit

Permalink
Merge pull request #5 from vst/2-integrate-release-please
Browse files Browse the repository at this point in the history
Integrate Release Please
  • Loading branch information
vst authored Jan 9, 2024
2 parents 88c55b7 + 0196384 commit 764dc6b
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-22.04

steps:
- name: "Release"
uses: google-github-actions/release-please-action@v4
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.0"
}
18 changes: 18 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"include-v-in-tag": true,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"draft": false,
"prerelease": false,
"initial-version": "0.0.1",
"extra-files": [
"package.yaml"
]
}
}
}

0 comments on commit 764dc6b

Please sign in to comment.