Build and release difflib-parser to PyPi #3
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: Build and release difflib-parser to PyPi | ||
| on: | ||
| workflow_run: | ||
| workflows: | ||
| - Bump version tag on merge | ||
| types: | ||
| - completed | ||
| workflow_dispatch: | ||
| push: | ||
| tags: | ||
| - "v*.*.*" | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| packages: read | ||
| issues: read | ||
| jobs: | ||
| prepare: | ||
| uses: git-mastery/actions/.github/workflows/get-latest-tag.yml@main | ||
|
Check failure on line 22 in .github/workflows/publish.yml
|
||
| publish: | ||
| needs: prepare | ||
| uses: git-mastery/actions/.github/workflows/publish-pypi-library.yml@main | ||
| with: | ||
| library_path: src/difflib_parser | ||
| ref_name: ${{ needs.prepare.outputs.ref_name }} | ||
| secrets: inherit | ||