From ad167f9b1ae79f9e604c3e360b0bbfc5ad096f20 Mon Sep 17 00:00:00 2001 From: Roman Sotnikov Date: Sun, 22 Feb 2026 15:55:30 +0300 Subject: [PATCH] style(yaml): fix formating for build-push-docker --- .github/workflows/release.yml | 42 +++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf2bbc4..2fad8a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,30 +85,30 @@ jobs: target/${{ matrix.target }}/release/${{ matrix.asset_name }}.sha256 build-docker-image: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 - - name: Login to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.TOKEN_GH_DEPLOY }} + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.TOKEN_GH_DEPLOY }} - - name: Build and push - uses: docker/build-push-action@v3 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: | - ghcr.io/telemt/telemt:latest - ghcr.io/telemt/telemt:${{github.ref_name}} + - name: Build and push + uses: docker/build-push-action@v3 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ghcr.io/telemt/telemt:latest + ghcr.io/telemt/telemt:${{github.ref_name}} release: name: Create Release