From 0e23d7b726abc59c513c97c88561815bdf92ca02 Mon Sep 17 00:00:00 2001 From: Giuseppe L'Erario Date: Tue, 19 Nov 2024 16:23:19 +0100 Subject: [PATCH] Remove file format --- .github/workflows/pypi-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-ci.yml b/.github/workflows/pypi-ci.yml index c835212..4840a1d 100644 --- a/.github/workflows/pypi-ci.yml +++ b/.github/workflows/pypi-ci.yml @@ -37,13 +37,13 @@ jobs: run: python -m build --sdist --wheel --outdir dist/ . - name: Create a File - run: echo "{{ matrix.os }}" > file-${{ matrix.os }}.txt + run: echo "{{ matrix.os }}" > file-${{ matrix.os }} - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: dist-${{ matrix.os }} - path: file-${{ matrix.os }}.txt + path: file-${{ matrix.os }} deploy_test_PyPI: name: 📦 Deploy to TestPyPI