Skip to content

Commit

Permalink
Adding creation of file
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulero authored Nov 19, 2024
1 parent a73620d commit b36cf80
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pypi-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b36cf80

Please sign in to comment.