use 7z for extraction. #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Prebuilt | |
on: | |
push: | |
branches: | |
- add-prebuilts | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
windows: | |
runs-on: windows-latest | |
name: MSYS2-${{matrix.platform}} | |
strategy: | |
matrix: | |
platform: ['MINGW64'] | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.platform}} | |
pacboy: >- | |
cc:p | |
libarchive:p | |
meson:p | |
ninja:p | |
pkgconf:p | |
qt5-base:p | |
install: >- | |
p7zip | |
wget | |
- name: Make Output Directory | |
run: | | |
mkdir -p ${{github.workspace}}/output/QArchive | |
- name: Compile and Test | |
run: | | |
meson setup "${{github.workspace}}/build" --prefix "${{github.workspace}}/output/QArchive" -Dauto_features=disabled -Dwarning_level=3 -Dcpp_std=c++20 | |
meson compile -C "${{github.workspace}}/build" --verbose | |
meson test -C "${{github.workspace}}/build" --verbose | |
meson install -C "${{github.workspace}}/build" | |
- name: Check Contents | |
working-directory: ${{github.workspace}} | |
run: ls -R ${{ github.workspace }}/output | |
- name: Zip Files | |
run: | | |
cd ${{ github.workspace }}/output/ | |
7z a windows-Qt-5.15.11-${{ matrix.platform }}.zip QArchive | |
- name: Upload Bundles | |
working-directory: ${{ github.workspace }}/output | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
wget "https://github.com/tcnksm/ghr/releases/download/v0.16.2/ghr_v0.16.2_windows_amd64.zip" | |
7z x ghr_v0.16.2_windows_amd64.zip | |
ghr_v0.16.2_windows_amd64/ghr.exe -n "Prebuilt Library (WIP)" -b "Prebuilt DLLs, a Work in Progress" -replace -delete -draft -prerelease prebuilt windows-Qt-5.15.11-${{ matrix.platform }}.zip |