Skip to content

Commit

Permalink
ci: add gh action workflow for publishing releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan1993spb committed Jul 8, 2022
1 parent f1934d2 commit 5c8d47b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Release

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

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
draft: false

0 comments on commit 5c8d47b

Please sign in to comment.