Skip to content

Update the httpd configuration template for /health #195

Update the httpd configuration template for /health

Update the httpd configuration template for /health #195

Workflow file for this run

name: Build and Push Image to Container Registry
on:
push:
branches:
- main
tags:
- v*
workflow_dispatch: {}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Metadata
id: meta
uses: docker/metadata-action@v4
with:
images: |
hub.opensciencegrid.org/soteria/soteria-webapp
tags: |
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
type=semver,pattern={{version}}
type=sha
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Log into OSG Hub
uses: docker/[email protected]
with:
registry: hub.opensciencegrid.org
username: ${{ secrets.HUB_USERNAME }}
password: ${{ secrets.HUB_TOKEN }}
- name: Build and Push Image
uses: docker/[email protected]
with:
build-args: |
GITHUB_REF=${{ github.ref }}
GITHUB_SHA=${{ github.sha }}
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}