Skip to content

Commit

Permalink
update to qt 6.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
microcai committed Nov 25, 2024
1 parent 610a9e7 commit cd4e63a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/msvc-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ runner.workspace }}/qt-source
key: qt-source-6.8.0
key: qt-source-6.8.1

- name: Clone Qt repo and its submodules
working-directory: ${{ runner.workspace }}
if: steps.cache-qt-repo.outputs.cache-hit != 'true'
run: |
# Clone Qt6 repo
git clone https://github.com/qt/qt5.git -b v6.8.0 --depth 1 qt-source
git clone https://github.com/qt/qt5.git -b v6.8.1 --depth 1 qt-source
cd qt-source
git apply ${{ github.workspace }}/0001-shadow-clone-for-submodules.patch
perl init-repository.pl --shallow --mirror https://github.com/qt/
Expand Down Expand Up @@ -93,18 +93,18 @@ jobs:
# Create archive of the pre-built Qt binaries
- name: Package binaries
working-directory: ${{ runner.workspace }}/qt-release
run: 7z a ${{ github.workspace }}\\qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip .
run: 7z a ${{ github.workspace }}\\qt6_681_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip .

- name: Release
uses: softprops/action-gh-release@v2.0.8
uses: softprops/action-gh-release@v2.1.0
if: startsWith(github.ref, 'refs/tags/')
with:
files: qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip
files: qt6_681_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip

- name: Upload artifact
uses: actions/upload-artifact@v4.4.3
with:
overwrite: true
name: qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static
name: qt6_681_${{ matrix.arch }}-${{ matrix.msvc }}_static
path: ${{ runner.workspace }}/qt-release

0 comments on commit cd4e63a

Please sign in to comment.