Add latest tag to image in build-cads-image.yml workflow #1
Workflow file for this run
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
name: Build CADS image | |
on: | |
workflow_call: | |
inputs: | |
deployment_branch: | |
type: string | |
required: true | |
image_name: | |
type: string | |
required: true | |
build_mode: | |
type: string | |
required: true | |
image_tag: | |
type: string | |
required: true | |
jobs: | |
build-docker-image: | |
name: Build ${{inputs.image_name}}:${{ inputs.image_tag }} from ${{ inputs.build_mode }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Login to harbor registry | |
uses: docker/login-action@v2 | |
with: | |
registry: '${{ secrets.HARBOR_IP }}' | |
username: ${{ secrets.HARBOR_USER }} | |
password: ${{ secrets.HARBOR_TOKEN }} | |
- name: Setup docker context for buildx | |
id: buildx-context | |
run: docker context create builders || docker context use builders | |
- name: Create BuildKit Configuration | |
run: | | |
cat <<EOF > buildkitd.toml | |
[registry."${{ secrets.HARBOR_IP }}"] | |
http = false | |
insecure = false | |
ca=["/etc/ssl/certs/ca-certificates.crt"] | |
EOF | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
version: v0.9.1 | |
endpoint: builders | |
buildkitd-flags: --debug | |
config: buildkitd.toml | |
- name: Checkout cads-deployment repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ecmwf-projects/cads-deployment | |
ref: ${{ inputs.deployment_branch }} | |
token: ${{ secrets.CADS_PAT }} | |
path: . | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: ${{ secrets.HARBOR_IP }}/cads/${{ inputs.image_name }} | |
tags: | | |
type=raw,value=${{ inputs.image_tag }},enabled=true | |
type=raw,value=latest,enabled=true | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: docker | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
file: docker/${{ inputs.image_name }}/Dockerfile | |
build-args: | | |
MODE=${{ inputs.build_mode }} | |
CADS_PAT=${{ secrets.CADS_PAT }} | |
GITHUB_TOKEN=${{ secrets.CADS_PAT }} | |
GITHUB_EMAIL=${{ secrets.EMAIL_GITHUB }} | |
GITHUB_USERNAME=${{ secrets.USERNAME_GITHUB }} | |
- name: Tag ${{ inputs.image_name }} with "latest" | |
uses: ecmwf-projects/cads-build-farm/.github/workflows/tag.yml@build-also-latest-with-tags | |
with: | |
deployment_branch: ${{ inputs.deployment_branch }} | |
new_tag: latest | |
image_tag: ${{ inputs.image_tag }} | |
repo_name: ${{ inputs.image_name }} | |