Wave/.github/workflows/release.yml

38 lines
858 B
YAML
Raw Permalink Normal View History

2024-03-27 09:00:20 +00:00
name: GitHub Release
on:
push:
2024-02-21 18:08:24 +00:00
tags: [ v* ]
2024-03-27 10:37:54 +00:00
# workflow_run:
# workflows: ["Docker Release"]
# types: [completed]
jobs:
build:
2024-03-27 10:37:54 +00:00
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
name: Generate Release
steps:
- name: checkout
uses: actions/checkout@v4
2024-02-22 14:15:29 +00:00
with:
fetch-depth: 0
- name: Generate Changelog
uses: pfandie/generate-changelog-action@v1.0.6
id: changelog
with:
2024-02-21 18:08:24 +00:00
config_path: .chglog
next_tag: ${{ github.ref_name }}
- name: Create Release
uses: ncipollo/release-action@v1.14.0
with:
makeLatest: true
body: ${{ steps.changelog.outputs.changelog }}
name: "Release ${{ github.ref_name }}"