From b36cf80265b441a6e8117474fa307966c451c76d Mon Sep 17 00:00:00 2001 From: Giuseppe L'Erario Date: Tue, 19 Nov 2024 16:00:26 +0100 Subject: [PATCH] Adding creation of file --- .github/workflows/pypi-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pypi-ci.yml b/.github/workflows/pypi-ci.yml index 6d305e9..c835212 100644 --- a/.github/workflows/pypi-ci.yml +++ b/.github/workflows/pypi-ci.yml @@ -36,6 +36,9 @@ jobs: - name: Build wheel and a source tarball run: python -m build --sdist --wheel --outdir dist/ . + - name: Create a File + run: echo "{{ matrix.os }}" > file-${{ matrix.os }}.txt + - name: Upload artifacts uses: actions/upload-artifact@v4 with: @@ -56,6 +59,7 @@ jobs: path: dist pattern: dist-* merge-multiple: true + - run: ls -R dist - name: Publish distribution 📦 to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1 @@ -78,6 +82,7 @@ jobs: path: dist pattern: dist-* merge-multiple: true + - run: ls -R dist - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1