mirror of https://github.com/containrrr/watchtower
				
				
				
			
			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.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			24 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
name: Release (Develop)
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - master
 | 
						|
 | 
						|
jobs:
 | 
						|
 | 
						|
  build:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v2
 | 
						|
 | 
						|
    - uses: jerray/publish-docker-action@master
 | 
						|
      with:
 | 
						|
        username: ${{ secrets.DOCKERHUB_USERNAME }}
 | 
						|
        password: ${{ secrets.DOCKERHUB_PASSWORD }}
 | 
						|
        file: dockerfiles/Dockerfile.self-contained
 | 
						|
        repository: containrrr/watchtower
 | 
						|
        tags: latest-dev
 |