Skip to content

Commit

Permalink
add automated release action for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciogeneroso committed Jun 30, 2024
1 parent baf47a3 commit 2409733
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish Github Release

on:
push:
tags:
- 'v*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Create release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: Release ${{ github.ref }}

0 comments on commit 2409733

Please sign in to comment.