Skip to content

Commit fb48cc7

Browse files
epaganonPrabhakar Kumar
authored and
Prabhakar Kumar
committed
Fixes bugs in GitHub Action Workflows.
1 parent cca0724 commit fb48cc7

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/from-matlab-docker-build-test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,4 @@ jobs:
6666
working-directory: tests
6767
env:
6868
IMAGE_NAME: ${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
69-
run: |
70-
python -m unittest ${{ env.ALT_PATH }}/test_container.py
71-
python -m unittest ${{ env.ALT_PATH }}/test_entrypoint.py
72-
python -m unittest ${{ env.ALT_PATH }}/test_installed_products.py
69+
run: python -m unittest -v ${{ env.ALT_PATH }}/*.py

.github/workflows/non-interactive-build-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ jobs:
3535
- name: Checkout repo
3636
uses: actions/checkout@v4
3737

38+
- name: Login to GitHub Container Registry
39+
uses: docker/login-action@v3
40+
with:
41+
registry: ghcr.io
42+
username: ${{ github.repository_owner }}
43+
password: ${{ secrets.GITHUB_TOKEN }}
44+
3845
- name: Set up Docker Buildx
3946
uses: docker/setup-buildx-action@v3
4047

0 commit comments

Comments
 (0)