Develop dxyinme (#6) #16
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: Docker Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: submodule | |
run: git submodule update --init | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build Docker Image | |
env: | |
registry: ${{ secrets.DOCKERHUB_USERNAME }} | |
run: | | |
docker build . --file deployment/Dockerfile --tag $registry/dcron_example_app:latest | |
- name: Push Docker Image | |
env: | |
registry: ${{ secrets.DOCKERHUB_USERNAME }} | |
run: | | |
docker push $registry/dcron_example_app:latest |