Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
microcai committed Oct 14, 2024
1 parent ddbb477 commit 25fdd1a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/msvc-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,19 @@ jobs:

# Create archive of the pre-built Qt binaries
- name: Package binaries
run: 7z a qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip ..\qt-release
working-directory: ${{ runner.workspace }}/qt-release
run: 7z a ${{ github.workspace }}\\qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip .

- name: Upload zip
- name: Release
uses: softprops/action-gh-release@v2.0.8
if: startsWith(github.ref, 'refs/tags/')
with:
files: qt6_680_${{ 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
path: qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip

- name: Release
uses: softprops/action-gh-release@v2.0.8
if: startsWith(github.ref, 'refs/tags/')
with:
files: qt6_680_${{ matrix.arch }}-${{ matrix.msvc }}_static.zip
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# static-build-qt6

一言以蔽之,利用 github action 编译静态 Qt 库给VS2022使用。

要下载编译好的库,点击 [releases](releases)


a github action script to automatically build static qt library for use with msvc2022

to down prebuilt binary, visit [releases](releases)

0 comments on commit 25fdd1a

Please sign in to comment.