From 20253c3b518e40fa324bb17c31b26bf2b87354b4 Mon Sep 17 00:00:00 2001 From: artem Date: Mon, 8 Jan 2024 18:04:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=B1=D1=80=D0=B0=D0=B7=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/demo.yaml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 188a411..d121a29 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -8,16 +8,17 @@ jobs: container: image: docker:23.0.6-dind steps: - - name: Checkout - uses: actions/checkout@v2 # Required to mount the Github Workspace to a volume - - name: Login to Docker Hub - uses: https://github.com/docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - registry: gitea.webart-tech.ru - - name: Build and push - uses: https://github.com/docker/build-push-action@v5 - with: - push: true - tags: platformer:${{ gitea.sha }} \ No newline at end of file + - run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login gitea.webart-tech.ru --username ${{ secrets.DOCKER_USERNAME }} --password-stdin + # - name: Checkout + # uses: actions/checkout@v2 # Required to mount the Github Workspace to a volume + # - name: Login to Docker Hub + # uses: https://github.com/docker/login-action@v3 + # with: + # username: ${{ secrets.DOCKER_USERNAME }} + # password: ${{ secrets.DOCKER_PASSWORD }} + # registry: gitea.webart-tech.ru + # - name: Build and push + # uses: https://github.com/docker/build-push-action@v5 + # with: + # push: true + # tags: platformer:${{ gitea.sha }} \ No newline at end of file