2023-07-30 09:36:50 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Request devcontainer for Qt ${{ matrix.qt }} and ${{ matrix.python }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- qt: 5.14.2
|
|
|
|
python: 3.7
|
|
|
|
- qt: 5.15.2
|
|
|
|
python: 3.9
|
|
|
|
- qt: 6.3.2
|
|
|
|
python: 3.9
|
|
|
|
- qt: 6.4.2
|
|
|
|
python: 3.9
|
|
|
|
- qt: 6.5.1
|
|
|
|
python: 3.9
|
2023-07-30 09:42:26 +03:00
|
|
|
permissions:
|
|
|
|
actions: write
|
2023-07-30 09:37:54 +03:00
|
|
|
steps:
|
|
|
|
- name: Invoke workflow with inputs
|
|
|
|
uses: benc-uk/workflow-dispatch@v1
|
|
|
|
with:
|
|
|
|
workflow: docker-publish.yml
|
2023-07-30 09:38:32 +03:00
|
|
|
inputs: '{ "qt": "${{ matrix.qt }}", "python": "${{ matrix.python }}" }'
|