Add Custom Exception Handler #828
Workflow file for this run
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
name: Build & publish ols4 images | |
on: | |
push: | |
branches: [ "dev", "stable" ] | |
pull_request: | |
branches: [ "dev" ] | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Log in to the Container registry | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push ols4 dataload Docker image | |
run: | | |
docker build -t ghcr.io/ebispot/ols4-dataload:${{ github.sha }} -f ./dataload/Dockerfile . | |
docker tag ghcr.io/ebispot/ols4-dataload:${{github.sha}} ghcr.io/ebispot/ols4-dataload:${{ github.head_ref || github.ref_name }} | |
docker push --all-tags ghcr.io/ebispot/ols4-dataload | |
- name: Build and push ols4 backend Docker image | |
run: | | |
docker build -t ghcr.io/ebispot/ols4-backend:${{ github.sha }} -f ./backend/Dockerfile . | |
docker tag ghcr.io/ebispot/ols4-backend:${{github.sha}} ghcr.io/ebispot/ols4-backend:${{ github.head_ref || github.ref_name }} | |
docker push --all-tags ghcr.io/ebispot/ols4-backend | |
- name: Build and push ols4 frontend Docker image | |
run: | | |
cd frontend | |
docker build -t ghcr.io/ebispot/ols4-frontend:${{ github.sha }} . | |
docker tag ghcr.io/ebispot/ols4-frontend:${{github.sha}} ghcr.io/ebispot/ols4-frontend:${{ github.head_ref || github.ref_name }} | |
docker push --all-tags ghcr.io/ebispot/ols4-frontend | |