Skip to content

Merge pull request #68 from petiaccja/conan-update #14

Merge pull request #68 from petiaccja/conan-update

Merge pull request #68 from petiaccja/conan-update #14

Workflow file for this run

name: Deploy
on:
push:
tags:
- 'v*.*.*'
jobs:
gh-releases:
name: Create tagged release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Package project
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
For changes, check the commit log.
draft: false
prerelease: false