Skip to content

Commit

Permalink
Merge pull request #2 from Nerixyz/feat/qt6-5
Browse files Browse the repository at this point in the history
Add Qt 6.5.0 builds
  • Loading branch information
jurplel authored Oct 20, 2023
2 parents 1a39a12 + 00f1e42 commit 956fe76
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/QtApng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
push:
branches: [ master ]
workflow_dispatch:
pull_request:
branches: [ master ]

jobs:
build:
Expand All @@ -23,6 +25,13 @@ jobs:
- os: macos-latest
vers: '6.2.2'
forceWin32: 'false'
- os: windows-2019
vers: '6.4.3'
forceWin32: 'false'
arch: 'win64_msvc2019_64'
- os: macos-latest
vers: '6.4.3'
forceWin32: 'false'

steps:
- uses: actions/checkout@v2
Expand All @@ -46,6 +55,7 @@ jobs:
filename: "qtapng-${{ matrix.os }}-${{ matrix.vers }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }}.zip"

- name: 'Upload to continous release'
if: github.event_name != 'pull_request'
uses: softprops/action-gh-release@v1
with:
tag_name: 'cont'
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/kimageformats.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
name: Build KImageFormats
on:
push:
branches: [ master ]
branches: [master]
workflow_dispatch:
pull_request:
branches: [master]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
matrix:
include:
- os: ubuntu-20.04
vers: '5.15.2'
Expand All @@ -25,6 +27,13 @@ jobs:
- os: macos-latest
vers: '6.2.2'
universalBinary: 'true'
- os: windows-2019
vers: '6.4.3'
forceWin32: 'false'
arch: 'win64_msvc2019_64'
- os: macos-latest
vers: '6.4.3'
universalBinary: 'true'

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -56,7 +65,8 @@ jobs:
filename: "kimageformats-${{ matrix.os }}-${{ matrix.vers }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }}.zip"

- name: 'Upload to continous release'
if: github.event_name != 'pull_request'
uses: softprops/action-gh-release@v1
with:
tag_name: 'cont'
files: kimageformats-*.zip
files: kimageformats-*.zip

0 comments on commit 956fe76

Please sign in to comment.