From 776f4c7d29dc53f922cbff9d8c5b27f1ea1eef9c Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 5 Feb 2024 15:55:25 +0100 Subject: [PATCH] Remove stray publish workflow --- .github/workflows/publish.yml | 57 ----------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index ed95774..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Publish - -on: - push: - tags: - - py-* - -jobs: - Unix: - strategy: - matrix: - os: [ubuntu-latest, macos-latest] - python: [3.7, 3.8, 3.9] - - runs-on: ${{ matrix.os }} - environment: "Publish wheels" - - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python }} - architecture: x64 - - name: Publish - uses: messense/maturin-action@v1 - with: - command: publish - args: -m instant-distance-py/Cargo.toml - --no-sdist - --username __token__ - --password ${{ secrets.PYPI_TOKEN }} - --interpreter python${{ matrix.python }} - - Windows: - runs-on: windows-latest - environment: "Publish wheels" - - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - name: Publish all versions - uses: messense/maturin-action@v1 - with: - command: publish - args: -m instant-distance-py/Cargo.toml - --no-sdist - --username __token__ - --password ${{ secrets.PYPI_TOKEN }}