Fix dynamic versioning plugin not correctly installed in workflow #4
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: Make a Beets Release artifacts | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version of the new release, just as a number with no prepended "v"' | |
| required: true | |
| pull_request: | |
| env: | |
| PYTHON_VERSION: 3.9 | |
| NEW_VERSION: ${{ inputs.version }} | |
| NEW_TAG: v${{ inputs.version }} | |
| jobs: | |
| increment-version: | |
| name: Bump version, commit and create tag | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Python tools | |
| uses: BrandonLWhite/[email protected] | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| cache: poetry | |
| - name: Install dependencies | |
| run: poetry install --with=release --extras=docs | |
| - name: Bump project version | |
| run: poe bump "${{ env.NEW_VERSION }}" | |
| - name: Install dependencies | |
| run: poetry install --with=release --extras=docs | |
| - name: Install pandoc | |
| run: sudo apt update && sudo apt install pandoc -y | |
| - name: Obtain the changelog | |
| id: generate_changelog | |
| run: | | |
| poe docs | |
| { | |
| echo 'changelog<<EOF' | |
| poe --quiet changelog | |
| echo EOF | |
| } >> "$GITHUB_OUTPUT" | |
| - name: Build a binary wheel and a source tarball | |
| run: poe build | |
| - name: Store the distribution packages | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: python-package-distributions-test | |
| path: dist/ |