Compare commits

...

4 Commits

Author SHA1 Message Date
Fabien LOISON 667415d603
docs(release): Updated maintainer release memo 2024-04-17 11:16:43 +02:00
Fabien LOISON fffc964b53
v1.3.1-1 2024-04-17 11:09:48 +02:00
Fabien LOISON 7f2612ea43
ci(standalone-builds): Make a tarball for Linux standalone releases 2024-04-17 10:53:00 +02:00
Fabien LOISON 24e24a25f7
misc(ci): Run standalone builds on PR 2024-04-17 10:22:23 +02:00
3 changed files with 20 additions and 3 deletions

View File

@ -7,6 +7,7 @@ on:
- "v[0-9]+\\.[0-9]+\\.[0-9]+-[0-9]+"
branches:
- master
pull_request: {}
jobs:
windows:
@ -52,8 +53,13 @@ jobs:
run: |
linux-bin/build.sh
- name: Archive Windows Build
- name: "Make the release tarball"
run: |
mv yoga-bin.dist yoga-v$(python setup.py --version)_linux_standalone_x86-64
tar -cvzf yoga-v$(python setup.py --version)_linux_standalone_x86-64.tar.gz yoga-v$(python setup.py --version)_linux_standalone_x86-64
- name: "Upload Linux tarball"
uses: actions/upload-artifact@v4
with:
name: yoga-vX.X.X_linux_standalone_x86-64
path: yoga-bin.dist
path: "yoga-*.tar.gz"

View File

@ -59,6 +59,16 @@ Changelog
* Nothing yet ;)
* **v1.3.1-1:**
* This version has no code change from the v1.3.1. It is only an update of
the distribution :
* A brand new standalone version was build for Linux
* The Windows standalone distribution was updated (changes in documentation)
* dist: Added scripts to build a standalone binary version of YOGA on Linux
* **v1.3.1:**
* chore(sdist): Fixed included files in sdist package (@flozz)

View File

@ -33,4 +33,5 @@ Publish source dist and wheels on PyPI.
* Make a release on Github
* Add changelog
* Add Windows standalone build from the CI (``winbuild`` workflow)
* Add Windows standalone zip from the CI (``standalone-builds`` workflow)
* Add Linux standalone tarball from the CI (``standalone-builds`` workflow)