Skip to content

Commit

Permalink
ci: Working on artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Jul 29, 2024
1 parent 600f57c commit 94e16c2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,16 @@ jobs:
run: docker push ghcr.io/${{ github.repository }}/abi:latest

- name: Run Papermill
run: docker run --rm --platform linux/amd64 ghcr.io/${{ github.repository }}/abi:latest papermill tests/ci.ipynb outputs/ci.output.ipynb
run: |
docker run --rm --name abi-execution --platform linux/amd64 ghcr.io/${{ github.repository }}/abi:latest papermill tests/ci.ipynb outputs/ci.output.ipynb
mkdir execution_outputs
docker cp abi-execution:/app/outputs ./execution_outputs/
- name: Upload output artifacts
uses: actions/upload-artifact@v4
with:
name: output-files
path: ./outputs
path: ./execution_outputs

# jobs:
# pull_and_run:
Expand Down

0 comments on commit 94e16c2

Please sign in to comment.