fix: update README.md #381
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
# This worklflow will perform following actions when the code is pushed to development branch: | |
# - Test linting with pylint. | |
# - Fetch Latest release. | |
# - Build the latest docker image in development which needs test to pass first. | |
# - Push the docker image to Github Artifact Registry-Dev. | |
# | |
# Maintainers: | |
# - name: Nisha Sharma | |
# - email: [email protected] | |
name : Dev Build, Test and Publish | |
on: | |
push: | |
branches: [development] | |
env: | |
DOCKER_HUB_USERNAME : ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_HUB_PASSWORD : ${{ secrets.DOCKER_PASSWORD }} | |
REPOSITORY_NAME: cheminformatics-microservice | |
REPOSITORY_NAMESPACE: nfdi4chem | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | |
with: | |
username: ${{ env.DOCKER_HUB_USERNAME }} | |
password: ${{ env.DOCKER_HUB_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
build-args: | | |
RELEASE_VERSION=dev-latest | |
tags: ${{ env.REPOSITORY_NAMESPACE }}/${{ env.REPOSITORY_NAME }}:dev-latest | |
username: ${{ env.DOCKER_HUB_USERNAME }} | |
password: ${{ env.DOCKER_HUB_PASSWORD }} |