Create Release #2
Workflow file for this run
This file contains 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: Create Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
ci: | |
uses: ./.github/workflows/ci.yml | |
release: | |
name: Create GitHub release | |
needs: ci | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Set build variables | |
run: | | |
echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV | |
- name: Get packages | |
uses: actions/[email protected] | |
with: | |
name: ${{ needs.ci.outputs.artifact-name }} | |
- name: Create release | |
uses: ncipollo/[email protected] | |
with: | |
name: ${{ env.VERSION }} | |
draft: true | |
artifacts: "*/dist/*" | |
artifactErrorsFailBuild: true | |
deploy-test: | |
name: Publish to TestPyPI | |
runs-on: ubuntu-latest | |
needs: [ci, release] | |
permissions: | |
# This permission is required for trusted publishing. | |
id-token: write | |
strategy: | |
matrix: | |
package: | |
- "toga" | |
- "toga_android" | |
- "toga_cocoa" | |
- "toga_core" | |
- "toga_demo" | |
- "toga_dummy" | |
- "toga_gtk" | |
- "toga_iOS" | |
- "toga_textual" | |
- "toga_web" | |
- "toga_winforms" | |
steps: | |
- name: Get packages | |
uses: actions/[email protected] | |
with: | |
name: ${{ needs.ci.outputs.artifact-name }} | |
- name: Extract ${{ matrix.package }} | |
run: | | |
mkdir dist | |
mv */dist/$(echo ${{ matrix.package }} | sed 's/_/?/')-[0-9]* dist | |
- name: Publish to TestPyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository_url: https://test.pypi.org/legacy/ |