-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post Github Release with github action #1242
Comments
unfortunately a release cannot be fully automated (unless you want to store gpg keys on github) so I'm doing it manually. |
Some Note that i just talking about github release and not release java jar. |
Yes but since the release is a manual process, then the github release can ideally be done by the gradle build script. |
Create a new github release with github action when a new tag of on:
push:
tags:
- "jetcd-*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Create Release and Upload Release Asset
uses: softprops/action-gh-release@v1
... Does it make sense? |
but that won't include any java artifact so in such case it could work, yes |
Now, github release of Jetcd staying at
jetcd-0.6.1
, Let us try to restore jetcd's github release. In order to reduce maintenance pressure, use github action to automate the release process.let me work for it if possible.
Any thought? @lburgazzoli
The text was updated successfully, but these errors were encountered: