Skip to content

Commit

Permalink
Merge pull request #131 from faloker/develop
Browse files Browse the repository at this point in the history
v1.2.0
  • Loading branch information
faloker authored Feb 14, 2021
2 parents 126d762 + ad87961 commit f5b3b92
Show file tree
Hide file tree
Showing 57 changed files with 44,859 additions and 3,963 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
tags:
- 'v*'

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
Loading

0 comments on commit f5b3b92

Please sign in to comment.