All checks were successful
		
		
	
	
	Docker build / Build docker (push) Successful in 46m29s
				
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			872 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			872 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Docker build
 | 
						|
on:
 | 
						|
  push:
 | 
						|
  workflow_dispatch:
 | 
						|
  schedule:
 | 
						|
    - cron: 0 0/6 * * *
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    name: Build docker
 | 
						|
    steps:
 | 
						|
      - name: Checkout code
 | 
						|
        uses: actions/checkout@v3
 | 
						|
 | 
						|
      - name: Login to Docker Hub
 | 
						|
        uses: docker/login-action@v3
 | 
						|
        with:
 | 
						|
          registry: sirherobrine23.com.br
 | 
						|
          password: ${{ secrets.DOCKER_TOKEN }}
 | 
						|
          username: sirherobrine23
 | 
						|
 | 
						|
      - name: Setup qemu
 | 
						|
        uses: docker/setup-qemu-action@v3
 | 
						|
 | 
						|
      - name: Setup buildx
 | 
						|
        uses: docker/setup-buildx-action@v3
 | 
						|
 | 
						|
      - name: Build and push
 | 
						|
        uses: docker/build-push-action@v6
 | 
						|
        with:
 | 
						|
          push: true
 | 
						|
          platforms: linux/arm64,linux/amd64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
 | 
						|
          tags: sirherobrine23.com.br/sirherobrine23/gitea:latest
 |