Skip to content

Merge pull request #1 from cyr-ius/coordinator #4

Merge pull request #1 from cyr-ius/coordinator

Merge pull request #1 from cyr-ius/coordinator #4

Workflow file for this run

name: Create release
on:
push:
tags:
- "*.*.*" # Push events to matching i.e. 1.0.0, 4.0.1
jobs:
release:
runs-on: ubuntu-latest
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v3
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false