You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			616 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			616 B
		
	
	
	
		
			YAML
		
	
| name: Publish
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
| 
 | |
| jobs:
 | |
|   docker-publish:
 | |
|     name: Publish to Docker Hub
 | |
|     if: "!contains(github.event.head_commit.message, '[ci skip]')"
 | |
|     runs-on: ubuntu-20.04
 | |
|     steps:
 | |
|       - name: Checkout code
 | |
|         uses: actions/checkout@v2
 | |
|       - name: Login to DockerHub
 | |
|         uses: docker/login-action@v1
 | |
|         with:
 | |
|           username: ${{ secrets.DOCKER_USERNAME }}
 | |
|           password: ${{ secrets.DOCKER_PASSWORD }}
 | |
|       - name: Build and push
 | |
|         uses: docker/build-push-action@v2
 | |
|         with:
 | |
|           push: true
 | |
|           tags: dchesterton/amcrest2mqtt:latest |