Skip to content

Commit

Permalink
Create Harbor deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
florislangeraert authored Feb 14, 2024
1 parent 9c9d896 commit 3a8d36d
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 3a8d36d

Please sign in to comment.