summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2022-07-30 16:55:16 +0300
committerIvan Komissarov <ABBAPOH@gmail.com>2022-08-03 09:44:11 +0000
commitb1175100caaa8e9449d483f8c7661c05bc7002f1 (patch)
tree5d93dcf383a78444c185261bbd121b9052c4b88e
parent2c8c7eb4d784857e0c90e9231ed4bdaadab24b32 (diff)
downloadqbs-b1175100caaa8e9449d483f8c7661c05bc7002f1.tar.gz
Include qtscript into a tarball
Fixes: QBS-1703 Change-Id: Idb33b9e2336c5b7fb7df37472fb6728ff06dd751 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--.github/workflows/release.yml4
-rw-r--r--changelogs/changes-1.23.1.md1
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7c3396a1d..6c99c35df 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -179,6 +179,8 @@ jobs:
needs: [build-linux, build-windows-with-docker]
steps:
- uses: actions/checkout@v1
+ with:
+ submodules: true
- name: Get version name
id: get-version-name
run: echo ::set-output name=version-name::$(cat VERSION)
@@ -187,7 +189,7 @@ jobs:
mkdir release
mkdir tmp
- name: Copy sources
- run: rsync -av --exclude='.git/' --exclude='tmp/' . ./tmp/qbs-src-${{ steps.get-version-name.outputs.version-name }}
+ run: rsync -av --exclude='.git/' --exclude='tmp/' --exclude='src/shared/qtscript/.git' . ./tmp/qbs-src-${{ steps.get-version-name.outputs.version-name }}
- name: Zip Archive
run: |
cd tmp/
diff --git a/changelogs/changes-1.23.1.md b/changelogs/changes-1.23.1.md
index 8423b229b..4eaf62221 100644
--- a/changelogs/changes-1.23.1.md
+++ b/changelogs/changes-1.23.1.md
@@ -6,6 +6,7 @@
* Adapted to new location of qscxmlc in Qt 6.3.
* Adapted to new location of qhelpgenerator in Qt 6.3.
* Fixed setting up Qt 6.3 with qbspkgconfig.
+* Added QtScript module to the source tarballs (QBS-1703).
# Other modules
* Fixed protobuf linking on macOS 11.