Skip to content

Commit

Permalink
Enhancement: Create release when tag is pushed
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Bergmann <[email protected]>
Co-authored-by: Arne Blankerts <[email protected]>
Co-authored-by: Andreas Möller <[email protected]>
Co-authored-by: Sebastian Heuer <[email protected]>
Co-authored-by: Fabian Blechschmidt <[email protected]>
Co-authored-by: Frank Sons <[email protected]>
  • Loading branch information
6 people committed Mar 9, 2024
1 parent aac7726 commit 34b51b2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# https://docs.github.com/en/actions

on:
push:
tags:
- "**"

name: Release

jobs:
release:
name: Release

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
extensions: none
tools: none

- name: Determine tag
run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Parse changelog
run: build/scripts/extract-release-notes.php ${{ env.RELEASE_TAG }} > release-notes.md

- name: Create release
uses: ncipollo/release-action@v1
with:
bodyFile: release-notes.md
tag: ${{ env.RELEASE_TAG }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 34b51b2

Please sign in to comment.