Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 in /healthy-ui #61

Bump word-wrap from 1.2.3 to 1.2.4 in /healthy-ui

Bump word-wrap from 1.2.3 to 1.2.4 in /healthy-ui #61

Workflow file for this run

name: "Healthy - development"
# only execute workflow on the master branch
on:
push:
branches: master
jobs:
buildAndPublish:
name: Build and publish dev docker
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# build healthy-api image and push it to docker hub
- name: Build and push healthy-api image
uses: docker/build-push-action@v4
with:
context: healthy-api
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/healthy-api:dev
# build healthy-ui image and push it to docker hub
- name: Build and push healthy-ui image
uses: docker/build-push-action@v4
with:
context: healthy-ui
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/healthy-ui:dev