Skip to content

Commit

Permalink
Update ontologies table (#688)
Browse files Browse the repository at this point in the history
* - Update ontologies table

* - Update branch tag attribute

* - Get All ontologies on initial render

* - Handle promise states and remove unnecessary code

* - Disable search on actions and description column

* - Format table content

* - Disable table options
  • Loading branch information
haideriqbal authored Jul 3, 2024
1 parent 324ee26 commit 9074bb1
Show file tree
Hide file tree
Showing 5 changed files with 939 additions and 375 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Build & publish ols4 images
on:
push:
branches: [ "dev", "stable" ]
pull_request:
branches: [ "dev" ]

env:
REGISTRY: ghcr.io
Expand All @@ -29,20 +31,20 @@ jobs:
run: |
cd dataload
docker build -t ghcr.io/ebispot/ols4-dataload:${{ github.sha }} .
docker tag ghcr.io/ebispot/ols4-dataload:${{github.sha}} ghcr.io/ebispot/ols4-dataload:${{ github.ref_name }}
docker tag ghcr.io/ebispot/ols4-dataload:${{github.sha}} ghcr.io/ebispot/ols4-dataload:${{ github.head_ref }}
docker push --all-tags ghcr.io/ebispot/ols4-dataload
- name: Build and push ols4 backend Docker image
run: |
cd backend
docker build -t ghcr.io/ebispot/ols4-backend:${{ github.sha }} .
docker tag ghcr.io/ebispot/ols4-backend:${{github.sha}} ghcr.io/ebispot/ols4-backend:${{ github.ref_name }}
docker tag ghcr.io/ebispot/ols4-backend:${{github.sha}} ghcr.io/ebispot/ols4-backend:${{ github.head_ref }}
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.ref_name }}
docker tag ghcr.io/ebispot/ols4-frontend:${{github.sha}} ghcr.io/ebispot/ols4-frontend:${{ github.head_ref }}
docker push --all-tags ghcr.io/ebispot/ols4-frontend
Loading

0 comments on commit 9074bb1

Please sign in to comment.