Compare commits

..

No commits in common. "9b0fe8afb393c3dc2794ba27d9ce1276d34af701" and "89d5d37b6ca6f83e986b2ebd26f8ef514428c6c3" have entirely different histories.

View File

@ -18,6 +18,9 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: LS
run: ls
- name: Log in to the Container registry - name: Log in to the Container registry
run: | run: |
docker login ${{ env.REGISTRY }} \ docker login ${{ env.REGISTRY }} \
@ -37,7 +40,7 @@ jobs:
docker run --rm \ docker run --rm \
-v ${{ github.workspace }}/tests:/tests \ -v ${{ github.workspace }}/tests:/tests \
${{ env.REGISTRY }}/${{ env.BASE_IMAGE_NAME }}:${{ github.ref_name }} \ ${{ env.REGISTRY }}/${{ env.BASE_IMAGE_NAME }}:${{ github.ref_name }} \
python3 /base.py python3 /tests/base.py
- name: Tag Base image as latest - name: Tag Base image as latest
run: | run: |
@ -63,7 +66,7 @@ jobs:
docker run --rm \ docker run --rm \
-v ${{ github.workspace }}/tests:/tests \ -v ${{ github.workspace }}/tests:/tests \
${{ env.REGISTRY }}/${{ env.JUPYTER_IMAGE_NAME }}:${{ github.ref_name }} \ ${{ env.REGISTRY }}/${{ env.JUPYTER_IMAGE_NAME }}:${{ github.ref_name }} \
python3 /dependencies.py python3 /tests/dependencies.py
- name: Tag Jupyter image as latest - name: Tag Jupyter image as latest
run: | run: |