From f4d8bcc33453008cf776e380cdab17ed041a561c Mon Sep 17 00:00:00 2001 From: Edgar Harutyunian Date: Fri, 7 Feb 2025 13:03:41 +0400 Subject: [PATCH] Update build-laplaciannb.yml Install twine explicitly --- .github/workflows/build-laplaciannb.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-laplaciannb.yml b/.github/workflows/build-laplaciannb.yml index 133431f..f9e1434 100644 --- a/.github/workflows/build-laplaciannb.yml +++ b/.github/workflows/build-laplaciannb.yml @@ -27,16 +27,20 @@ jobs: # Step 3: Install pdm - name: Install pdm run: python3 -m pip install --upgrade pip pdm - - # Step 4: Build a binary wheel and a source tarball + + # Step 4: Install Twine + - name: Install Twine + run: python3 -m pip install --upgrade pip pdm + + # Step 5: Build a binary wheel and a source tarball - name: Build a binary wheel and a source tarball run: pdm build - # Step 5: Validate the distribution + # Step 6: Validate the distribution - name: Validate the distribution run: python3 -m twine check dist/* - # Step 6: Store the distribution artifacts for later use + # Step 7: Store the distribution artifacts for later use - name: Store the distribution artifacts uses: actions/upload-artifact@v4 with: @@ -132,4 +136,4 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./dist/* asset_name: $(basename $file) - asset_content_type: application/octet-stream \ No newline at end of file + asset_content_type: application/octet-stream