diff --git a/.gitea/workflows/linux_arm64_docker-release.yaml b/.gitea/workflows/linux_arm64_docker-release.yaml index 05b4dda..0b71de0 100644 --- a/.gitea/workflows/linux_arm64_docker-release.yaml +++ b/.gitea/workflows/linux_arm64_docker-release.yaml @@ -10,8 +10,11 @@ jobs: - name: Install packages run: apk add --no-cache git curl wget unzip bash nodejs npm docker - - name: Login container registry - run: docker login https://192.168.178.45:3000 -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASSWORD }} + - uses: docker/login-action@v3 + with: + registry: https://192.168.178.45:3000 + username: ${{ secrets.REGISTRY_USER }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Setup .NET10 uses: actions/setup-dotnet@v3