Skip to content

Merge pull request #3189 from Azure/revert-3171-412-default #25

Merge pull request #3189 from Azure/revert-3171-412-default

Merge pull request #3189 from Azure/revert-3171-412-default #25

Workflow file for this run

name: release-note
on:
push:
tags:
- v*
permissions:
contents: write
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
# ref and fetch-depth: 0 are required to retrieve tag annotations.
# (see https://github.com/actions/runner-images/issues/1717)
- name: Generate Changelog
run: ./.github/generate_release_note.sh ${{ github.workspace }}/CHANGELOG.txt
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: ${{ github.workspace }}/CHANGELOG.txt
name: Release ${{ github.ref_name }}
draft: false
prerelease: false