Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Nov 23, 2024
1 parent ca47af5 commit fa0114e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: go
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
- name: Checkout
if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.7.4"
}
12 changes: 12 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "go",
"include-component-in-tag": false,
"packages": {
".": {
"extra-files": [
"version/version.go"
]
}
}
}
5 changes: 4 additions & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
package version

const Version = "1.7.5"
// x-release-please-start-version
const Version = "1.7.4"

// x-release-please-end

0 comments on commit fa0114e

Please sign in to comment.