Skip to content

Commit

Permalink
feat: add release Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedali8 committed Jul 7, 2023
1 parent 706972f commit 0499b74
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Release"

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
release:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"

- name: "Release"
uses: "docker://antonyurchenko/git-release:v5"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0499b74

Please sign in to comment.