markdownify-rs 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ name: publish
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - "v*"
8
+
9
+ jobs:
10
+ build-linux:
11
+ name: build-${{ matrix.target }}
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ include:
17
+ - target: x86_64
18
+ manylinux: 2014
19
+ no_sdist: false
20
+ - target: aarch64
21
+ manylinux: 2014
22
+ no_sdist: true
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ - uses: docker/setup-qemu-action@v3
26
+ if: matrix.target == 'aarch64'
27
+ - uses: dtolnay/rust-toolchain@stable
28
+ - uses: actions/setup-python@v5
29
+ with:
30
+ python-version: "3.8"
31
+ - uses: PyO3/maturin-action@v1
32
+ with:
33
+ command: publish
34
+ target: ${{ matrix.target }}
35
+ manylinux: ${{ matrix.manylinux }}
36
+ args: --skip-existing --non-interactive ${{ matrix.no_sdist && '--no-sdist' || '' }}
37
+ env:
38
+ MATURIN_USERNAME: __token__
39
+ MATURIN_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
@@ -0,0 +1,4 @@
1
+ /target
2
+ .venv
3
+ .venv
4
+ .uv-cache