Skip to content

Commit 7985489

Browse files
committed
Correct release creation workflow.
1 parent 40eb933 commit 7985489

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -172,30 +172,30 @@ jobs:
172172
name: html-coverage-report-project
173173
path: htmlcov
174174

175-
verify-projects:
176-
name: Verify project
177-
needs: [ package, unit-tests ]
178-
uses: beeware/.github/.github/workflows/app-create-verify.yml@main
179-
with:
180-
runner-os: ${{ matrix.runner-os }}
181-
framework: ${{ matrix.framework }}
182-
strategy:
183-
fail-fast: false
184-
matrix:
185-
framework: [ "toga", "pyside6", "pygame", "console" ]
186-
runner-os: [ "macos-15-intel", "macos-latest", "ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest" ]
187-
188-
verify-apps:
189-
name: Build app
190-
needs: [ package, unit-tests ]
191-
uses: beeware/.github/.github/workflows/app-build-verify.yml@main
192-
with:
193-
# Builds on Linux must use System Python; otherwise, fall back to version all GUI toolkits support
194-
python-version: ${{ startsWith(matrix.runner-os, 'ubuntu') && 'system' || '3.12' }}
195-
runner-os: ${{ matrix.runner-os }}
196-
framework: ${{ matrix.framework }}
197-
strategy:
198-
fail-fast: false
199-
matrix:
200-
framework: [ "toga", "pyside6", "pygame", "console" ]
201-
runner-os: [ "macos-15-intel", "macos-15", "ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest" ]
175+
# verify-projects:
176+
# name: Verify project
177+
# needs: [ package, unit-tests ]
178+
# uses: beeware/.github/.github/workflows/app-create-verify.yml@main
179+
# with:
180+
# runner-os: ${{ matrix.runner-os }}
181+
# framework: ${{ matrix.framework }}
182+
# strategy:
183+
# fail-fast: false
184+
# matrix:
185+
# framework: [ "toga", "pyside6", "pygame", "console" ]
186+
# runner-os: [ "macos-15-intel", "macos-latest", "ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest" ]
187+
188+
# verify-apps:
189+
# name: Build app
190+
# needs: [ package, unit-tests ]
191+
# uses: beeware/.github/.github/workflows/app-build-verify.yml@main
192+
# with:
193+
# # Builds on Linux must use System Python; otherwise, fall back to version all GUI toolkits support
194+
# python-version: ${{ startsWith(matrix.runner-os, 'ubuntu') && 'system' || '3.12' }}
195+
# runner-os: ${{ matrix.runner-os }}
196+
# framework: ${{ matrix.framework }}
197+
# strategy:
198+
# fail-fast: false
199+
# matrix:
200+
# framework: [ "toga", "pyside6", "pygame", "console" ]
201+
# runner-os: [ "macos-15-intel", "macos-15", "ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest" ]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Get packages
4242
uses: actions/download-artifact@v6.0.0
4343
with:
44-
pattern: ${{ format('{0}*', needs.package.outputs.artifact-basename) }}
44+
pattern: ${{ format('{0}*', needs.ci.outputs.artifact-basename) }}
4545
merge-multiple: true
4646
path: dist
4747

0 commit comments

Comments
 (0)