Skip to content

Added docs and github workflow #1

Added docs and github workflow

Added docs and github workflow #1

Workflow file for this run

name: Create Release
on:
push:
tags:
- 'v*'
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 }}
body: This is an automated release, wait for the change log to be updated
draft: false
prerelease: false