Skip to content

chore(deps): bump react and @types/react #113

chore(deps): bump react and @types/react

chore(deps): bump react and @types/react #113

Workflow file for this run

name: Image
on:
push:
branches:
- main
paths-ignore:
- '**.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build image
run: |
make image
- name: Display image
run: |
docker images
# Only push from main repository
- name: Push image to Quay.io
if: github.repository == 'hawtio/hawtio-online'
env:
USERNAME: ${{ secrets.QUAY_USERNAME }}
PASSWORD: ${{ secrets.QUAY_PASSWORD }}
run: |
docker login -u ${USERNAME} -p ${PASSWORD} quay.io
make image-push