diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-31 00:21:15 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-06-02 00:35:51 +0200 |
| commit | 2782656a83e403da24d162743e020e4f72497a4f (patch) | |
| tree | 65f191282759bf8dcd9cd7853ec5d8ca92088c42 | |
| parent | enable windows bundle in validate (diff) | |
| download | zen-2782656a83e403da24d162743e020e4f72497a4f.tar.xz zen-2782656a83e403da24d162743e020e4f72497a4f.zip | |
read part of changelog allowing us to keep history
| -rw-r--r-- | .github/workflows/create_release.yml | 8 | ||||
| -rw-r--r-- | CHANGELOG.md | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 6827030c1..7c7bb06cf 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -123,11 +123,15 @@ jobs: if_true: "true" if_false: "false" - - name: Read CHANGELOG + - name: Extract Version Changes + run: | + sed '1,/^##/!d;/##/d' CHANGELOG.md > CHANGELOG.tmp + + - name: Read CHANGELOG.tmp id: read_changelog uses: andstor/file-reader-action@v1 with: - path: "CHANGELOG.md" + path: "CHANGELOG.tmp" - name: Create Release id: create_release diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c57ca701..14358d4fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +## - Add release flow in GitHub actions on pushed tag `v0.1.2` gives full release, `v0.1.2-pre0` gives pre-release - Namespaces: This introduces namespaces to the zenserver but only the default ue4.ddc is supported. Clients that don't send a namespace in the request will keep old behviour, new clients that sends namespace is required to use ue4.ddc (which they currently do) - Aligned bucket naming rules with UE code base @@ -6,3 +7,5 @@ - Restore logic where we accept failed overwrite if resulting size is the same for standlone file in cache - Correctly calculate the m_TotalSize difference when overwriting file for standalone files in cache - Fix namespace folder scanning + +## older releases go here |