From 57c51f383cffb0aea2546dbdd944b355c8b5a48a Mon Sep 17 00:00:00 2001 From: Andreas Hasenkopf Date: Tue, 17 Oct 2023 16:33:55 +0200 Subject: [PATCH] Where are the files? --- .github/workflows/on_tag.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on_tag.yml b/.github/workflows/on_tag.yml index 5fce413..2edc5fb 100644 --- a/.github/workflows/on_tag.yml +++ b/.github/workflows/on_tag.yml @@ -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}} @@ -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}} @@ -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 @@ -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