Skip to content

Bump @adobe/css-tools from 4.2.0 to 4.3.1 in /healthy-ui #62

Bump @adobe/css-tools from 4.2.0 to 4.3.1 in /healthy-ui

Bump @adobe/css-tools from 4.2.0 to 4.3.1 in /healthy-ui #62

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