Skip to content

Commit

Permalink
EBR-64: add a script for publishing frontend/backend images to ebrain…
Browse files Browse the repository at this point in the history
…s registry
  • Loading branch information
915-Misan-Teodora authored and stefanoantonel committed Jun 20, 2024
1 parent fdc64b7 commit b2716cd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish frontend/backend images to Ebrains Docker Registry
on:
[workflow_dispatch]

jobs:
publish_images:
runs-on: ubuntu-latest
steps:
- name: log in
run: |
docker login ${{secrets.EBRAINS_REGISTRY_SERVER}} -u ${{ secrets.DOCKER_REGISTRY_USER }} -p ${{secrets.DOCKER_REGISTRY_PASSWORD}}
- name: build and publish frontend and backend
run: |
make build
make publish

0 comments on commit b2716cd

Please sign in to comment.