Skip to content

Commit

Permalink
Added GitHub Release Workflow File #28
Browse files Browse the repository at this point in the history
  • Loading branch information
TanmoySG authored May 10, 2022
1 parent 9373315 commit 81f32ca
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# GitHub Workflow File to Create Release on GitHub when a git-tag is pushed

name: Release on Tagging

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1

0 comments on commit 81f32ca

Please sign in to comment.