Skip to content

Commit a5ef762

Browse files
committed
chore: prepare for 0.5.0 - Nov 7, 2022
1 parent 77bb403 commit a5ef762

File tree

3 files changed

+23
-27
lines changed

3 files changed

+23
-27
lines changed

.github/workflows/create-gh-release.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/publish-release.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
name: Publish Release
22

33
on:
4-
release:
5-
types: [ published ]
4+
push:
5+
tags:
6+
- '**'
67

78
env:
89
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx2g -Dorg.gradle.daemon=false -Dkotlin.incremental=false -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
910

1011
jobs:
12+
create-gh-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Extract release notes
19+
id: release_notes
20+
uses: ffurrer2/extract-release-notes@v1
21+
22+
- name: Create release
23+
uses: softprops/action-gh-release@v1
24+
with:
25+
body: ${{ steps.release_notes.outputs.release_notes }}
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
1129
publish:
30+
needs: create-gh-release
1231
strategy:
1332
matrix:
1433
os: [ macos-11 ]

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
### Added
1616

17-
- `Flow.select` operator (from `1` to `5`).
17+
- [`Flow.select`](https://hoc081098.github.io/FlowExt/docs/0.x/-flow-ext/com.hoc081098.flowext/select.html) operator (from `1` to `5`).
18+
See [Readme#select](https://github.com/hoc081098/FlowExt#select) for more details.
1819

1920
## [0.4.0] - Jul 22, 2022
2021

0 commit comments

Comments
 (0)