Skip to content

v1.1.3

v1.1.3 #30

Workflow file for this run

on:
push:
tags:
- 'v*'
branches:
- main
name: 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: ${{github.ref}}
# body: Text describing the contents of the release. Optional, and not needed if using body_path.
# body_path A file with contents describing the release. Optional, and not needed if using body.
draft: false
prerelease: false