Make window resizing smooth on Windows with Direct3D (#1243) #86
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: Post-Merge CI | |
| on: | |
| workflow_dispatch: # Allow manual triggering | |
| push: # Trigger on pushes to master and release branches | |
| branches: | |
| - master | |
| - 'release/*' | |
| concurrency: | |
| group: post-merge-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| docker-publish: | |
| name: 'Docker Publish' | |
| uses: ./.github/workflows/docker-publish.yml | |
| with: | |
| publish: true | |
| permissions: | |
| contents: read | |
| packages: write | |
| tests: | |
| name: 'Tests' | |
| needs: docker-publish | |
| uses: ./.github/workflows/tests.yml | |
| skiko-publish: | |
| name: 'Skiko Publish (Dry Run)' | |
| needs: docker-publish | |
| uses: ./.github/workflows/publish-dry-run.yml | |
| docs-publish: | |
| name: 'Documentation Publish' | |
| needs: docker-publish | |
| uses: ./.github/workflows/docs.yml | |
| with: | |
| publish: true | |
| secrets: inherit |