-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7a8006
commit b0e3537
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# https://docs.github.com/en/actions | ||
|
||
on: | ||
push: | ||
tags: | ||
- "**" | ||
|
||
name: Release | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
|
||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
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: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ env.RELEASE_TAG }} | ||
name: FOAL ${{ env.RELEASE_TAG }} | ||
bodyFile: release-notes.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env php | ||
<?php declare(strict_types=1); | ||
if ($argc !== 2) { | ||
print $argv[0] . ' <tag>' . PHP_EOL; | ||
|
||
exit(1); | ||
} | ||
|
||
$version = $argv[1]; | ||
|
||
$file = __DIR__ . '/../../ChangeLog.md'; | ||
|
||
if (!is_file($file) || !is_readable($file)) { | ||
print $file . ' cannot be read' . PHP_EOL; | ||
|
||
exit(1); | ||
} | ||
|
||
$buffer = ''; | ||
$append = false; | ||
|
||
foreach (file($file) as $line) { | ||
if (str_starts_with($line, '## [' . $version . ']')) { | ||
$append = true; | ||
|
||
continue; | ||
} | ||
|
||
if ($append && (str_starts_with($line, '## ') || str_starts_with($line, '['))) { | ||
break; | ||
} | ||
|
||
if ($append) { | ||
$buffer .= $line; | ||
} | ||
} | ||
|
||
$buffer = trim($buffer); | ||
|
||
if ($buffer === '') { | ||
print 'Unable to extract release notes' . PHP_EOL; | ||
|
||
exit(1); | ||
} | ||
|
||
print $buffer . PHP_EOL; |