initial-deploy-client #17
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: initial-deploy-client | |
on: | |
push: | |
# watch for push event in main branch | |
branches: | |
- main | |
# watch for changes in specific file | |
paths: | |
- "trigger-initial-deploy.txt" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# build an image | |
- run: cd client && docker build -t thasup/client . | |
# login on docker hub | |
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
# push an image to docker hub | |
- run: docker push thasup/client |