Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Emterry committed Dec 3, 2024
1 parent e1d6208 commit fbadb9c
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,24 @@ jobs:
IMAGE_TAG: ${{ github.sha }}
run: |
make build
docker image ls
- name: Log in to GitHub Container Registry
id: ghcr_login
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push
id: push
env:
IMAGE_NAME: ghcr.io/ministryofjustice/analytics-platform-control-panel
run: |
docker push $IMAGE_NAME:${{ github.sha }}
- name: Run tests
env:
IMAGE_TAG: ${{ github.sha }}
run: |
docker image ls
make test-python

0 comments on commit fbadb9c

Please sign in to comment.