Skip to content

0.5.0

0.5.0 #12

Workflow file for this run

# This workflow will create a new release on GitHub
name: Release
on:
push:
tags:
- v*
jobs:
github:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: coli-ana ${{ github.ref }}
body: TODO
draft: true
prerelease: false