34 lines
		
	
	
		
			701 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			701 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
name: docker-monica-build main
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
  schedule:
 | 
						|
    - cron: "0 6 * * SUN"
 | 
						|
 | 
						|
jobs:
 | 
						|
  Dockerfile lint:
 | 
						|
    runs-on: k3s
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - uses: hadolint/hadolint-action@v3.1.0
 | 
						|
        with:
 | 
						|
          dockerfile: Dockerfile
 | 
						|
 | 
						|
  build:
 | 
						|
    needs: Dockerfile lint
 | 
						|
    runs-on: k3s
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - name: Kaniko build
 | 
						|
        uses: aevea/action-kaniko@master
 | 
						|
        with:
 | 
						|
          image: rogersik/monica
 | 
						|
          registry: gitea.sikorski.cloud
 | 
						|
          tag: 4
 | 
						|
          tag_with_latest: true
 | 
						|
          cache: true
 | 
						|
          username: rogersik
 | 
						|
          password: ${{ secrets.REGISTRY_PASSWORD }}
 |