Publish Docker Enterprise Tag image #466
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker Enterprise Tag image | |
on: | |
push: | |
tags: | |
- '**' # Push events to every tag including hierarchical tags like | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
build_args: NPM_TOKEN=${{ secrets.NPM_TOKEN }} | |
dockerfile: Dockerfile-en | |
repository: tiledeskrepo/tiledesk-server-enterprise | |
tag_with_ref: true |