diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 971e7fc..1eadd4a 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -29,11 +29,8 @@ jobs: - name: Check env run: | - echo '${{ needs.set-vars.outputs.CHAT_BACK_IMAGE }}' - echo '${{ needs.set-vars.outputs.CELERY_IMAGE }}' - echo $CHAT_BACK_IMAGE - echo $CELERY_IMAGE - + echo '${{ steps.set-vars.outputs.CHAT_BACK_IMAGE }}' + echo '${{ steps.set-vars.outputs.CELERY_IMAGE }}' - name: Get code uses: https://git.urec56.ru/urec/checkout@v4 @@ -54,7 +51,7 @@ jobs: context: . file: docker/Dockerfile_back push: true - tags: ${{ needs.set-vars.outputs.CHAT_BACK_IMAGE }} + tags: ${{ steps.set-vars.outputs.CHAT_BACK_IMAGE }} cache-from: type=gha cache-to: type=gha,mode=max @@ -65,7 +62,7 @@ jobs: context: . file: docker/Dockerfile_celery push: true - tags: ${{ needs.set-vars.outputs.CELERY_IMAGE }} + tags: ${{ steps.set-vars.outputs.CELERY_IMAGE }} cache-from: type=gha cache-to: type=gha,mode=max