Add publish
Some checks are pending
Python CI / test (push) Waiting to run
Python CI / build (push) Blocked by required conditions
Python CI / publish (push) Blocked by required conditions

This commit is contained in:
Benedith Mulongo 2024-10-11 16:12:39 +02:00
parent d4a052f6e1
commit 8c53766457
Signed by: benedith
GPG key ID: 62D68B584B4B3EB3

View file

@ -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