From 2b62fe03eec2d0e5f790b9a492a811f81d570aa2 Mon Sep 17 00:00:00 2001 From: Alois Date: Tue, 25 Nov 2025 21:15:01 +0100 Subject: [PATCH] Updated workflow --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fbdb57c..882c456 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,14 +9,14 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Login to Registry - run: | - echo "${{ secrets.DOCKER_PASSWD }}" | docker login \ - -u "${{ secrets.DOCKER_USER }}" \ - --password-stdin \ - docker.tensamin.net + - name: Login + uses: docker/login-action@v3 + with: + registry: docker.tensamin.net + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_PASSWD }} - - name: Build and Push + - name: Build & Push run: | docker build -t docker.tensamin.net/iota:latest . docker push docker.tensamin.net/iota:latest