Skip to content

Commit

Permalink
test Harbor push (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsteinig authored Feb 13, 2025
1 parent f2a94b6 commit bf88a64
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/harbor-build-forecast-etl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Harbor build and publish forecast ETL docker images

on:
[workflow_dispatch]

jobs:
publish_image:
runs-on: ubuntu-latest
steps:
- name: Login to Harbor
uses: docker/login-action@v3
with:
registry: eccr.ecmwf.int
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}

- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./air-quality-backend
file: ./air-quality-backend/Dockerfile.forecast
platforms: linux/amd64
push: true
tags: "eccr.ecmwf.int/cams-applications/vairify-etl-forecast:latest"

0 comments on commit bf88a64

Please sign in to comment.