Skip to content

Update README.md

Update README.md #21

Workflow file for this run

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 }} # provided by actions
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: Release ${{ github.ref }}
draft: false
prerelease: false