-
Notifications
You must be signed in to change notification settings - Fork 15
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
feat(ci): Add workflow for creating new release tag #55
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Release | ||
on: | ||
workflow_dispatch: | ||
# Inputs the workflow accepts. | ||
inputs: | ||
tag: | ||
description: "Tag name, e.g. 0.0.0" | ||
default: "" | ||
required: true | ||
|
||
jobs: | ||
build: | ||
name: Upload Release Asset | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Git set user | ||
run: | | ||
git config user.name "$USERNAME" | ||
git config user.email "$USERNAME-[bot]@users.noreply.github.com" | ||
env: | ||
USERNAME: ${{ github.actor }} | ||
|
||
- name: Update the VERSION | ||
run: | | ||
echo "$VERSION" > VERSION | ||
env: | ||
VERSION: ${{ github.event.inputs.tag }} | ||
|
||
- name: Commit changes and tag it | ||
run: | | ||
git add VERSION | ||
git commit -m "ci: update VERSION to $VERSION" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will this commit -m breaks DCO check? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No it won't |
||
git tag -a "v$VERSION" -m "$VERSION" | ||
git show --stat | ||
env: | ||
VERSION: ${{ github.event.inputs.tag }} | ||
|
||
- name: Push Release tag | ||
run: | | ||
git push --follow-tags | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: "v${{ github.event.inputs.tag }}" | ||
release_name: "v${{github.event.inputs.tag}}" | ||
draft: false | ||
prerelease: false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add a change log file? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will add it in the next PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure, if we can use shell script to do a math function. for example read 0.0.3 from current file auto increases to 0.0.4 and commit?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, we can do that as well. But I wanted the version to be provided during runtime in cases where we want to break the continuous flow and maybe release something like
0.1.0