Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
langerae committed Feb 14, 2024
2 parents be22211 + da2f771 commit 3ba9732
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Login to Harbor Registry
run: docker login -u '${{ secrets.HARBOR_USERNAME }}' -p ${{ secrets.HARBOR_PASSWORD }} containers.deltares.nl

- name: Build Docker image
run: docker build . -f Dockerfile -t containers.deltares.nl/blue_earth_data/dgds-frontend

- name: Push Docker image
run: docker push docker containers.deltares.nl/blue_earth_data/dgds-frontend

0 comments on commit 3ba9732

Please sign in to comment.