From afca634dc3eba9ea43c9952f4aa63c9217b5826e Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Thu, 9 Oct 2025 22:44:58 -0700 Subject: [PATCH] modernized build action --- .github/workflows/pythonpublish.yml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 6cf3496..8dd5764 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -16,21 +16,20 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools build wheel twine lxml - name: Build - python -m build . + uv build --wheel - name: Publish to Pypi uses: pypa/gh-action-pypi-publish@v1.13.0 with: password: ${{ secrets.PYPI_APIKEY }} - - name: Send Bluesky Post - uses: myConsciousness/bluesky-post@v5 - with: - text: | - I've released a new version of wavinfo, my module for - reading WAVE metadata. - link-preview-url: ${{ github.server_url }}/${{ github.repository }} - identifier: ${{ secrets.BLUESKY_APP_USER }} - password: ${{ secrets.BLUESKY_APP_PASSWORD }} - service: bsky.social - retry-count: 1 + # - name: Send Bluesky Post + # uses: myConsciousness/bluesky-post@v5 + # with: + # text: | + # I've released a new version of wavinfo, my module for + # reading WAVE metadata. + # link-preview-url: ${{ github.server_url }}/${{ github.repository }} + # identifier: ${{ secrets.BLUESKY_APP_USER }} + # password: ${{ secrets.BLUESKY_APP_PASSWORD }} + # service: bsky.social + # retry-count: 1