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