Skip to content

twa: 1.11.0

twa: 1.11.0 #5

Workflow file for this run

on:
push:
tags:
- 'v*'
name: release
jobs:
release:
name: publish release on github
runs-on: ubuntu-latest
steps:
- 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: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }}