Skip to content

Release/3.1.0 (#22) #16

Release/3.1.0 (#22)

Release/3.1.0 (#22) #16

Workflow file for this run

name: Create Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
jobs:
publish-release:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Echo branch
run: echo "${{ github.event.base_ref }}"
- name: Github Release
id: create_release
uses: release-drafter/release-drafter@v5
with:
tag: ${{ github.ref }}
draft: false
prerelease: false
publish: true
commitish: ${{ github.event.base_ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Echo release name and body
run: |
echo "${{ steps.create_release.outputs.name }}"
echo "${{ steps.create_release.outputs.body }}"