Some checks failed
		
		
	
	docker-monica-build mr / build (push) Failing after 20s
				
			Signed-off-by: Roger Sikorski <roger@sikorski.cloud>
		
			
				
	
	
		
			27 lines
		
	
	
		
			588 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			588 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: docker-monica-build mr
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches-ignore:
 | 
						|
      - main
 | 
						|
 | 
						|
jobs:
 | 
						|
  # Dockerfile lint:
 | 
						|
  #   runs-on: k3s
 | 
						|
  #   steps:
 | 
						|
  #     - uses: actions/checkout@v3
 | 
						|
  #     - uses: hadolint/hadolint-action@v3.1.0
 | 
						|
  #       with:
 | 
						|
  #         dockerfile: Dockerfile
 | 
						|
 | 
						|
  build:
 | 
						|
    # needs: Dockerfile lint
 | 
						|
    runs-on: docker # because of ipv4 problem in k3s we use docker vm
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v3
 | 
						|
      - name: Kaniko build
 | 
						|
        uses: aevea/action-kaniko@master
 | 
						|
        with:
 | 
						|
          image: gitea.sikorski.cloud/rogersik/monica
 | 
						|
          tag: development
 |