Skip to content

Update Image Version to e89eda4 #30

Update Image Version to e89eda4

Update Image Version to e89eda4 #30

Workflow file for this run

name: buildpush
on:
push:
tags:
- v*
jobs:
build_test:
# The type of runner that the job will run on
name: buildpush
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Get tag
id: tag
uses: dawidd6/action-get-tag@v1
with:
strip_v: true
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./resources/docker/Dockerfile
push: true
platforms: linux/amd64
tags: dimozone/identity-api:${{steps.tag.outputs.tag}}
- name: Update Image Version in the related HelmChart values.yaml
uses: fjogeleit/yaml-update-action@v0.11.1
with:
valueFile: 'charts/identity-api/values-prod.yaml'
propertyPath: 'image.tag'
value: ${{steps.tag.outputs.tag}}
branch: main
message: 'Update Image Version to ${{steps.tag.outputs.tag}}'