|  |  | @ -15,6 +15,9 @@ If you are interested, [check out](https://git.io/Je09Y) my other :octocat: GitH | 
			
		
	
		
		
			
				
					
					|  |  |  | ___ |  |  |  | ___ | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | * [Usage](#usage) |  |  |  | * [Usage](#usage) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   * [DockerHub](#dockerhub) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   * [GitHub Package Registry](#github-package-registry) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   * [GitLab](#gitlab) | 
			
		
	
		
		
			
				
					
					|  |  |  | * [Customizing](#customizing) |  |  |  | * [Customizing](#customizing) | 
			
		
	
		
		
			
				
					
					|  |  |  |   * [inputs](#inputs) |  |  |  |   * [inputs](#inputs) | 
			
		
	
		
		
			
				
					
					|  |  |  | * [Limitation](#limitation) |  |  |  | * [Limitation](#limitation) | 
			
		
	
	
		
		
			
				
					|  |  | @ -23,6 +26,33 @@ ___ | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | ## Usage |  |  |  | ## Usage | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ### DockerHub | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ```yaml | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | name: ci | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | on: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   push: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     branches: master | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     tags: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | jobs: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   login: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     runs-on: ubuntu-latest | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     steps: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |       - | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         name: Checkout | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         uses: actions/checkout@v2 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |       - | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         name: Login to DockerHub | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         uses: crazy-max/ghaction-docker-login@v1 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         with: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           username: ${{ secrets.DOCKERHUB_USERNAME }} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           password: ${{ secrets.DOCKERHUB_PASSWORD }} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ``` | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ### GitHub Package Registry | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | ```yaml |  |  |  | ```yaml | 
			
		
	
		
		
			
				
					
					|  |  |  | name: ci |  |  |  | name: ci | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -42,8 +72,35 @@ jobs: | 
			
		
	
		
		
			
				
					
					|  |  |  |         name: Login to DockerHub |  |  |  |         name: Login to DockerHub | 
			
		
	
		
		
			
				
					
					|  |  |  |         uses: crazy-max/ghaction-docker-login@v1 |  |  |  |         uses: crazy-max/ghaction-docker-login@v1 | 
			
		
	
		
		
			
				
					
					|  |  |  |         with: |  |  |  |         with: | 
			
		
	
		
		
			
				
					
					|  |  |  |           username: ${{ secrets.DOCKER_USERNAME }} |  |  |  |           registry: docker.pkg.github.com | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |           password: ${{ secrets.DOCKER_PASSWORD }} |  |  |  |           username: ${{ github.repository_owner }} | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           password: ${{ secrets.GITHUB_TOKEN }} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ``` | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ### GitLab | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | ```yaml | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | name: ci | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | on: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   push: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     branches: master | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     tags: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | jobs: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   login: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     runs-on: ubuntu-latest | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     steps: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |       - | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         name: Checkout | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         uses: actions/checkout@v2 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |       - | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         name: Login to GitLab | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         uses: crazy-max/ghaction-docker-login@v1 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         with: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           registry: registry.gitlab.com | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           username: ${{ secrets.GITLAB_USERNAME }} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |           password: ${{ secrets.GITLAB_PASSWORD }} | 
			
		
	
		
		
			
				
					
					|  |  |  | ``` |  |  |  | ``` | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | ## Customizing |  |  |  | ## Customizing | 
			
		
	
	
		
		
			
				
					|  |  | 
 |