test new workflow

This commit is contained in:
2025-05-21 11:13:18 +02:00
parent 592703b6cc
commit 7b3f8ce11e

View File

@@ -1,38 +1,15 @@
name: Deploy
on: on:
push: milestone:
tags: types: [closed]
- v[0-9]+.[0-9]+.[0-9]+ name: Milestone Closure
jobs: jobs:
deploy: create-release-notes:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Code - uses: actions/checkout@master
uses: actions/checkout@v3 - name: Create Release Notes
uses: docker://decathlon/release-notes-generator-action:2.0.1
- name: Update CHANGELOG env:
id: changelog GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: requarks/changelog-action@v1 OUTPUT_FOLDER: temp_release_notes
with: USE_MILESTONE_TITLE: "true"
token: ${{ secrets.TOKEN }}
tag: ${{ github.ref_name }}
- name: Create Release
uses: ncipollo/release-action@v1.12.0
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ secrets.TOKEN }}
- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: main
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md