Skip to content

Commit

Permalink
✨ added release acition
Browse files Browse the repository at this point in the history
  • Loading branch information
djagoda881 committed Nov 14, 2023
1 parent c13a10d commit d83be29
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

name: "Release"

on:
push:
tags:
- "v*.*.*" # Match tags that start with 'v'
workflow_dispatch:
inputs:
tag:
description: Tag for automatic release
required: true

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1

0 comments on commit d83be29

Please sign in to comment.