Skip to content

Commit

Permalink
Merge pull request #6 from affinidi/add_release
Browse files Browse the repository at this point in the history
fix: adding a release workflow triggered by tag creation
  • Loading branch information
raghavendrram authored Jan 17, 2024
2 parents 276a6e0 + 70f39d1 commit 0b7ced2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Create a release when a tag is created
name: Publish Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
title: New Release

0 comments on commit 0b7ced2

Please sign in to comment.