All checks were successful
		
		
	
	Build and Publish Docker Container / build (push) Successful in 8m2s
				
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			772 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			772 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Build and Publish Docker Container
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
|     runs-on: ubuntu-latest
 | |
|     container:
 | |
|       image: catthehacker/ubuntu:act-latest
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout code
 | |
|         uses: actions/checkout@v2
 | |
| 
 | |
|       - name: Set up Docker Buildx
 | |
|         uses: docker/setup-buildx-action@v1
 | |
| 
 | |
|       - name: Login to Docker
 | |
|         uses: docker/login-action@v1
 | |
|         with:
 | |
|           registry: git.joshuacoles.me
 | |
|           username: ${{ secrets.DOCKER_USERNAME }}
 | |
|           password: ${{ secrets.DOCKER_PASSWORD }}
 | |
| 
 | |
|       - name: Build and Push Docker image
 | |
|         uses: docker/build-push-action@master
 | |
|         with:
 | |
|           context: .
 | |
|           push: true
 | |
|           tags: git.joshuacoles.me/personal/monzo-ingestion:latest
 |