event-to-object v2.0.0 #57
Workflow file for this run
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: publish | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: read # Required to checkout the code | |
| id-token: write # Required to sign the NPM publishing statements | |
| jobs: | |
| publish-reactpy: | |
| if: startsWith(github.event.release.name, 'reactpy ') || startsWith(github.event.release.tag_name, 'reactpy-') | |
| uses: ./.github/workflows/.hatch-run.yml | |
| with: | |
| job-name: "Publish to PyPI" | |
| run-cmd: "hatch run javascript:build && hatch build --clean && hatch publish --yes" | |
| secrets: | |
| pypi-username: ${{ secrets.PYPI_USERNAME }} | |
| pypi-password: ${{ secrets.PYPI_PASSWORD }} | |
| publish-reactpy-client: | |
| if: startsWith(github.event.release.name, '@reactpy/client ') || startsWith(github.event.release.tag_name, '@reactpy/client-') | |
| uses: ./.github/workflows/.hatch-run.yml | |
| with: | |
| job-name: "Publish to NPM" | |
| run-cmd: "hatch run javascript:publish_client" | |
| publish-event-to-object: | |
| if: startsWith(github.event.release.name, 'event-to-object ') || startsWith(github.event.release.tag_name, 'event-to-object-') | |
| uses: ./.github/workflows/.hatch-run.yml | |
| with: | |
| job-name: "Publish to NPM" | |
| run-cmd: "hatch run javascript:publish_event_to_object" |