Skip to content

Commit

Permalink
ci: working on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Jul 24, 2024
1 parent eebdfed commit 1717fe9
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,20 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx-
- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Docker image
run: make build
run: |
make build
docker tag abi:latest ghcr.io/${{ github.repository }}/abi:latest
- name: Push Docker image to GitHub Container Registry
run: docker push ghcr.io/${{ github.repository }}/abi:latest

- name: Run Papermill
run: docker run --rm -it --platform linux/amd64 abi papermill main.ipynb output.ipynb
run: docker run --rm -it --platform linux/amd64 ghcr.io/${{ github.repository }}/abi:latest papermill main.ipynb output.ipynb

0 comments on commit 1717fe9

Please sign in to comment.