-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2a94b6
commit bf88a64
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |