From 8c53766457183cdd03caa59bceba009bc0c7bdab Mon Sep 17 00:00:00 2001 From: Benedith Mulongo Date: Fri, 11 Oct 2024 16:12:39 +0200 Subject: [PATCH] Add publish --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7079557..414e63c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,3 +70,18 @@ jobs: - name: Build the package run: poetry build + + publish: + runs-on: ubuntu-latest + needs: build + steps: + - uses: actions/download-artifact@v2 + with: + path: artifacts + + - shell: bash + working-directory: artifacts + run: | + for i in $( ls ); do + cat $i/$ARTIFACT + done