name: Build and Push on: push: branches: - main jobs: build: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Registry uses: docker/login-action@v3 with: registry: git.realmanual.ru username: ${{ github.actor }} password: ${{ secrets.TOKEN }} - name: Build and Push uses: docker/build-push-action@v6 with: context: . push: true tags: git.realmanual.ru/pub/openssh-client:latest