Skip to content

Commit

Permalink
Add release notes parser, store Phar after build [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNDRmac committed Oct 5, 2021
1 parent 64b966b commit 4c22530
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,21 @@ jobs:
- name: Build Zephir PHAR
run: .ci/build-phar.sh

- name: Upload Zephir Phar
uses: actions/upload-artifact@v2
with:
name: zephir.phar
path: zephir.phar

- name: Get the release version
id: get-version
run: |
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
- name: Prepare Release Notes
run: |
./.ci/release-notes.sh ./CHANGELOG.md > ./release-notes.md
- name: Create Release
uses: ncipollo/release-action@v1
with:
Expand Down
13 changes: 13 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
### Fixed
- Fixed multiple return types in stubs [#2283](https://github.com/zephir-lang/zephir/issues/2283)
- Fixed `bool` return type in stubs [#2272](https://github.com/zephir-lang/zephir/issues/2272)

### Changed
- Removed `.zep` from stubs filenames [#2273](https://github.com/zephir-lang/zephir/issues/2273)

## [0.14.0] - 2021-09-18
### Added
- Added support for `require_once` [#2253](https://github.com/zephir-lang/zephir/issues/2253)

### Changed
- Bumped minimal version of Zephir Parser to `1.4.1`. [#2284](https://github.com/zephir-lang/zephir/issues/2284)

0 comments on commit 4c22530

Please sign in to comment.