Skip to content

Commit

Permalink
try tag release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasIME committed Jan 28, 2024
1 parent 05a28d8 commit 2f761ae
Showing 2 changed files with 19 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/github-actions.demo.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Tag Release
run-name: Tagging latest release 🚀
on:
push:
tags:
- 'v*'

jobs:
tag-release:
runs-on: ubuntu-latest
steps:
- name: Create Release
id: create-new-release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}

0 comments on commit 2f761ae

Please sign in to comment.