Fix publishing

This commit is contained in:
Andras Schmelczer 2026-03-11 22:44:39 +00:00
commit 59284d00f9

View file

@ -74,6 +74,8 @@ jobs:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
permissions:
id-token: write
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
@ -115,9 +117,7 @@ jobs:
run: | run: |
cd reconcile-js cd reconcile-js
cp ../README.md . cp ../README.md .
npm publish npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
build-python-wheels: build-python-wheels:
needs: build needs: build
@ -147,7 +147,7 @@ jobs:
- uses: PyO3/maturin-action@v1 - uses: PyO3/maturin-action@v1
with: with:
target: ${{ matrix.target }} target: ${{ matrix.target }}
args: --release --out dist args: --release --out dist --find-interpreter
manylinux: auto manylinux: auto
working-directory: reconcile-python working-directory: reconcile-python