Add publish
This commit is contained in:
parent
d4a052f6e1
commit
8c53766457
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
@ -70,3 +70,18 @@ jobs:
|
||||||
|
|
||||||
- name: Build the package
|
- name: Build the package
|
||||||
run: poetry build
|
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
|
||||||
|
|
Loading…
Reference in a new issue