Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable survey banner and update github workflow #690

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,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.head_ref }}
docker tag ghcr.io/ebispot/ols4-dataload:${{github.sha}} ghcr.io/ebispot/ols4-dataload:${{ github.head_ref || github.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.head_ref }}
docker tag ghcr.io/ebispot/ols4-backend:${{github.sha}} ghcr.io/ebispot/ols4-backend:${{ github.head_ref || github.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.head_ref }}
docker tag ghcr.io/ebispot/ols4-frontend:${{github.sha}} ghcr.io/ebispot/ols4-frontend:${{ github.head_ref || github.ref }}
docker push --all-tags ghcr.io/ebispot/ols4-frontend

3 changes: 0 additions & 3 deletions frontend/dist/banner.txt
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
Do data resources managed by EMBL-EBI and our collaborators make a difference to your work? <br><br>
Please take 10 minutes to fill in our annual user survey, and help us make the case for why sustaining open data resources is critical for life sciences research.<br><br>
Survey link: <a href='https://www.surveymonkey.com/r/HJKYKTT?channel=[webpage]' target='_blank'>https://www.surveymonkey.com/r/HJKYKTT?channel=[webpage]</a>
3 changes: 0 additions & 3 deletions frontend/src/banner.txt
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
Do data resources managed by EMBL-EBI and our collaborators make a difference to your work? <br><br>
Please take 10 minutes to fill in our annual user survey, and help us make the case for why sustaining open data resources is critical for life sciences research.<br><br>
Survey link: <a href='https://www.surveymonkey.com/r/HJKYKTT?channel=[webpage]' target='_blank'>https://www.surveymonkey.com/r/HJKYKTT?channel=[webpage]</a>
Loading