Qt: Fix game grid selection rect bottom/right edges #1413
This file contains hidden or 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: Automated Builds | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'appveyor.yml' | |
| - 'scripts/*' | |
| - '.github/ISSUE_TEMPLATE/*' | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| paths-ignore: | |
| - '**.md' | |
| - 'appveyor.yml' | |
| - 'scripts/*' | |
| - '.github/ISSUE_TEMPLATE/*' | |
| jobs: | |
| windows: | |
| name: 💻 Windows | |
| uses: "./.github/workflows/windows-build.yml" | |
| linux-appimage: | |
| name: 🐧 Linux AppImage | |
| uses: "./.github/workflows/linux-appimage-build.yml" | |
| linux-cross-appimage: | |
| name: 🐧 Linux Cross-Compiled AppImage | |
| uses: "./.github/workflows/linux-cross-appimage-build.yml" | |
| macos: | |
| name: 🍎 MacOS | |
| uses: "./.github/workflows/macos-build.yml" | |
| create-release: | |
| name: 📤 Create Release | |
| needs: [windows, linux-appimage, linux-cross-appimage, macos] | |
| runs-on: ubuntu-22.04 | |
| if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' | |
| steps: | |
| - name: Download Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: ./artifacts/ | |
| - name: Display Downloaded Artifacts | |
| run: find ./artifacts/ | |
| - name: Create Preview Release | |
| if: github.ref == 'refs/heads/master' | |
| uses: marvinpinto/action-automatic-releases@d68defdd11f9dcc7f52f35c1b7c236ee7513bcc1 | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| automatic_release_tag: "preview" | |
| prerelease: true | |
| title: "Latest Preview Build" | |
| files: | | |
| ./artifacts/windows-x64/duckstation-windows-x64-release.zip | |
| ./artifacts/windows-x64/duckstation-windows-x64-release-symbols.zip | |
| ./artifacts/windows-x64-sse2/duckstation-windows-x64-sse2-release.zip | |
| ./artifacts/windows-x64-sse2/duckstation-windows-x64-sse2-release-symbols.zip | |
| ./artifacts/windows-arm64/duckstation-windows-arm64-release.zip | |
| ./artifacts/windows-arm64/duckstation-windows-arm64-release-symbols.zip | |
| ./artifacts/linux-x64-appimage/DuckStation-x64.AppImage | |
| ./artifacts/linux-x64-sse2-appimage/DuckStation-x64-SSE2.AppImage | |
| ./artifacts/linux-arm64-appimage/DuckStation-arm64.AppImage | |
| ./artifacts/linux-arm64-appimage/DuckStation-Mini-arm64.AppImage | |
| ./artifacts/linux-armhf-appimage/DuckStation-armhf.AppImage | |
| ./artifacts/linux-armhf-appimage/DuckStation-Mini-armhf.AppImage | |
| ./artifacts/macos/duckstation-mac-release.zip | |
| - name: Create Rolling Release | |
| if: github.ref == 'refs/heads/dev' | |
| uses: marvinpinto/action-automatic-releases@d68defdd11f9dcc7f52f35c1b7c236ee7513bcc1 | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| automatic_release_tag: "latest" | |
| prerelease: false | |
| title: "Latest Rolling Release" | |
| files: | | |
| ./artifacts/windows-x64/duckstation-windows-x64-release.zip | |
| ./artifacts/windows-x64/duckstation-windows-x64-release-symbols.zip | |
| ./artifacts/windows-x64-sse2/duckstation-windows-x64-sse2-release.zip | |
| ./artifacts/windows-x64-sse2/duckstation-windows-x64-sse2-release-symbols.zip | |
| ./artifacts/windows-arm64/duckstation-windows-arm64-release.zip | |
| ./artifacts/windows-arm64/duckstation-windows-arm64-release-symbols.zip | |
| ./artifacts/linux-x64-appimage/DuckStation-x64.AppImage | |
| ./artifacts/linux-x64-sse2-appimage/DuckStation-x64-SSE2.AppImage | |
| ./artifacts/linux-arm64-appimage/DuckStation-arm64.AppImage | |
| ./artifacts/linux-arm64-appimage/DuckStation-Mini-arm64.AppImage | |
| ./artifacts/linux-armhf-appimage/DuckStation-armhf.AppImage | |
| ./artifacts/linux-armhf-appimage/DuckStation-Mini-armhf.AppImage | |
| ./artifacts/macos/duckstation-mac-release.zip |