-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Add workflow for creating new release tag
Signed-off-by: Vibhu Prashar <[email protected]>
- Loading branch information
1 parent
61c5415
commit bac99ba
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.3 |