From 224633af93c2d471d69666115a7d4d3cdaf7c59f Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 23 Oct 2022 12:19:55 +0200 Subject: [PATCH] ci: upload built wheels as an artifact for ease of inspection --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e298f9bd..4f158f6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,13 @@ jobs: python -m build --sdist --wheel . ls -l dist + # ref: https://github.com/actions/upload-artifact#readme + - uses: actions/upload-artifact@v3 + with: + name: repo2docker_service-${{ github.sha }} + path: "dist/*" + if-no-files-found: error + # This step is only run when a new tag is pushed # all previous steps always run in order to exercise them - name: Publish distribution to PyPI