Перемещена строчка с авторизацией Gitea Docker Registry
Some checks failed
Unit tests / tests (push) Failing after 57s

This commit is contained in:
Оля Бизюкова 2025-02-04 11:36:55 +05:00
parent f8718d7694
commit 7bb79af104

View File

@ -49,6 +49,9 @@ jobs:
- name: Build solution
run: dotnet build --no-restore
- name: Login to Gitea Docker Registry
run: docker login -u publisher -p ${{ secrets.PUBLISHER_PASSWORD }} https://git.ddrilling.ru
- name: Run integration tests
run: dotnet test DD.Persistence.IntegrationTests
@ -67,9 +70,6 @@ jobs:
- name: Publish Persistence Models Package
run: dotnet nuget push ./artifacts/DD.Persistence.Models.*.nupkg --source gitea --skip-duplicate
- name: Login to Gitea Docker Registry
run: docker login -u publisher -p ${{ secrets.PUBLISHER_PASSWORD }} https://git.ddrilling.ru
- name: Docker Build
run: docker build -t git.ddrilling.ru/ddrilling/persistence:latest --network=host --build-arg PUBLISHERPASSWORD="${{ secrets.PUBLISHER_PASSWORD }}" -f DD.Persistence.App/Dockerfile .