Skip to content

Commit

Permalink
Where are the files?
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyscientist committed Oct 17, 2023
1 parent f70d69f commit 57c51f3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
Expand All @@ -26,7 +26,7 @@ jobs:
# - name: 'Checkout GitHub Action'
# uses: actions/checkout@main
# - name: 'Login to GitHub Container Registry'
# uses: docker/login-action@v1
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{github.actor}}
Expand All @@ -41,7 +41,8 @@ jobs:
test:
needs: build-api
runs-on: ubuntu-latest
container: ${{ needs.build-api.outputs.imagename }}
container:
image: ${{ needs.build-api.outputs.imagename }}
services:
postgres:
image: postgres:latest
Expand All @@ -59,7 +60,7 @@ jobs:
pip install -r backend/requirements_test.txt
- name: Test
run: |
find /opt -ls
find /opt/aimaas -ls
pytest /opt/aimaas/tests/
env:
PG_USER: aimaas
Expand Down

0 comments on commit 57c51f3

Please sign in to comment.