Skip to content

Commit

Permalink
ci: add git-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lombervid committed Jul 15, 2023
1 parent b6f8186 commit 90ba8d8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/git-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Release

on:
push:
tags:
- 'v*'

permissions:
contents: write

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

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

0 comments on commit 90ba8d8

Please sign in to comment.