fix #81
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 Release | |
on: | |
push: | |
branches: | |
- add-prebuilts | |
permissions: | |
contents: write | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
outputs: | |
deploy: ${{ steps.git.outputs.deploy }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python3 | |
run: | | |
sudo apt install -y python3 | |
- id: git | |
name: Check Commit Message | |
run: | | |
git clone https://github.com/antony-jr/QArchive qarc | |
cd qarc | |
git tag > /tmp/tags.txt | |
cd .. | |
rm -rf qarc | |
cat /tmp/tags.txt | |
result=$(python3 scripts/check.py "$(git log -1 --pretty=%B)" "/tmp/tags.txt") | |
echo "deploy=$result" >> $GITHUB_OUTPUT | |
- id: make_rel | |
if: steps.git.outputs.deploy != 'false' | |
name: Make Relase | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ steps.git.outputs.deploy}} | |
run: | | |
gh release create "$tag" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="$tag" \ | |
--generate-notes | |
windows-msvc: | |
runs-on: windows-2019 | |
#needs: check | |
#if: needs.check.outputs.deploy != 'false' | |
name: windows-msvc-v${{ matrix.toolset }}-${{ matrix.arch }}-qt-${{ matrix.qt_version }}-${{ matrix.build_type }} | |
strategy: | |
fail-fast: false | |
matrix: | |
qt_version: [5.15.2] | |
arch: [x64, x86] | |
build_type: [Release, Debug] | |
toolset: [14.0, 14.2] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: CMake | |
uses: lukka/get-cmake@latest | |
- name: MSVC | |
uses: TheMrMilchmann/setup-msvc-dev@v2 | |
with: | |
arch: ${{ matrix.arch }} | |
toolset: ${{ matrix.toolset }} | |
- name: Install Conan | |
id: conan | |
uses: turtlebrowser/get-conan@main | |
with: | |
version: 1.62.0 | |
- name: Make Output Directory | |
run: | | |
mkdir -p ${{github.workspace}}/output/QArchive | |
mkdir -p ${{github.workspace}}/upload | |
- name: Build | |
run: | | |
set QT_VERSION=${{ matrix.qt_version }} | |
python3 scripts/write_conan.py | |
mkdir build | |
cd build | |
cmake -DQARCHIVE_QT_VERSION_MAJOR=5 -DQARCHIVE_CONAN_BUILD=ON -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} .. | |
cmake --build . --config ${{ matrix.build_type }} | |
cmake --install . --prefix=${{ github.workspace }}/output/QArchive --config ${{ matrix.build_type }} | |
cd .. | |
- name: Check Contents | |
working-directory: ${{github.workspace}} | |
run: ls -R ${{ github.workspace }}/output | |
- name: Zip Files | |
run: | | |
cd ${{ github.workspace }}/output/ | |
7z a ${{ github.workspace }}/upload/windows-msvc-v${{ matrix.toolset }}-qt-${{ matrix.qt_version }}-${{ matrix.arch }}-${{ matrix.build_type }}.zip QArchive | |
- name: Upload Bundles | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/upload/windows-msvc-v${{ matrix.toolset }}-qt-${{ matrix.qt_version }}-${{ matrix.arch }}-${{ matrix.build_type }}.zip | |
#tag: ${{ needs.check.outputs.deploy }} | |
tag: prebuilt | |
overwrite: true | |
prerelease: false |