Fixed syntax #2
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 Publish to PyPI | ||
| # triggered manually only | ||
| on: | ||
| workflow_dispatch: | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| check-if-codeowner: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| is_code_owner: ${{ steps.check.outputs.is_owner }} | ||
| steps: | ||
| - name: Load CODEOWNERS | ||
| run: | | ||
| owners=$(grep -v '^#' .github/CODEOWNERS | awk '{print $2}') | ||
| echo "owners=$owners" >> $GITHUB_OUTPUT | ||
| - name: Check actor | ||
| run: | | ||
| actor=${{ github.actor }} | ||
| echo "Actor: $actor" | ||
| if echo "${{ steps.owners.outputs.owners }}" | grep -qw "@$actor"; then | ||
| echo "is_code_owner=true" >> $GITHUB_OUTPUT | ||
| else | ||
| echo "is_code_owner=false" >> $GITHUB_OUTPUT | ||
| fi | ||
| build-and-publish: | ||
| runs-on: ubuntu-latest | ||
| needs: check-if-codeowner | ||
| if: needs.check-if-codeowner.outputs.is_code_owner == 'true' | ||
| steps: | ||
| - name: Test output | ||
| run: | | ||
| echo "${{ needs.check-if-codeowner.outputs.is_code_owner }}" | ||
| # - name: Checkout code | ||
| # uses: actions/checkout@v5 | ||
| # - name: Set up Python | ||
| # uses: actions/setup-python@v6 | ||
| # with: | ||
| # python-version: '3.13' | ||
| # cache: pip | ||
| # - name: Install build | ||
| # if: steps.check-actor.outputs.is_code_owner == 'true' | ||
| # run: | | ||
| # python -m pip install --upgrade pip | ||
| # python -m pip install --upgrade build | ||
| # - name: Build wheel | ||
| # if: steps.check-actor.outputs.is_code_owner == 'true' | ||
| # run: python -m build --wheel --outdir wheelhouse | ||
| # - name: Build source distribution | ||
| # if: steps.check-actor.outputs.is_code_owner == 'true' | ||
| # run: python -m build --sdist -o dist | ||
| # - name: Upload wheel artifact | ||
| # if: steps.check-actor.outputs.is_code_owner == 'true' | ||
| # uses: actions/upload-artifact@v4 | ||
| # with: | ||
| # name: wheel-artifact-${{ github.run_id }} | ||
| # path: wheelhouse/*.whl | ||
| # retention-days: 7 | ||
| # - name: Upload sdist | ||
| # if: steps.check-actor.outputs.is_code_owner == 'true' | ||
| # uses: actions/upload-artifact@v4 | ||
| # with: | ||
| # name: sdist-artifact-${{ github.run_id }} | ||
| # path: dist/*.tar.gz | ||
| # retention-days: 7 | ||
| # publish: | ||
| # needs: build-and-publish | ||
| # runs-on: ubuntu-latest | ||
| # permissions: | ||
| # contents: read | ||
| # id-token: write | ||
| # steps: | ||
| # - name: Checkout repository | ||
| # uses: actions/checkout@v5 | ||
| # - name: Download wheel artifact | ||
| # uses: actions/download-artifact@v5 | ||
| # with: | ||
| # name: wheel-artifact-${{ github.run_id }} | ||
| # path: wheelhouse | ||
| # - name: Download sdist artifact | ||
| # uses: actions/download-artifact@v5 | ||
| # with: | ||
| # name: sdist-artifact-${{ github.run_id }} | ||
| # path: dist | ||
| # - name: Set up Python and cache twine | ||
| # uses: actions/setup-python@v6 | ||
| # with: | ||
| # python-version: '3.13' | ||
| # cache: 'pip' | ||
| # - name: Install twine | ||
| # run: pip install --upgrade twine | ||
| # - name: Verify package metadata | ||
| # run: | | ||
| # twine check $(find . -name "*.whl") $(find . -name "*.tar.gz") | ||
| # - name: Publish to PyPI | ||
| # uses: pypa/gh-action-pypi-publish@release/v1 | ||
| # with: | ||
| # skip-existing: true | ||