Skip to content

Enabling-new-CI-CD-for-Identity-API (#124) #58

Enabling-new-CI-CD-for-Identity-API (#124)

Enabling-new-CI-CD-for-Identity-API (#124) #58

Workflow file for this run

name: identity-api
on:
push:
branches:
- develop
paths:
- "src/backend/services/identity-api/**"
- ".github/workflows/identity-api.yml"
pull_request:
branches:
- develop
paths:
- "src/backend/services/identity-api/**"
- ".github/workflows/identity-api.yml"
jobs:
build-release:
uses: ./.github/workflows/build-release.yml
with:
service-name: identity-api
secrets: inherit
deploy:
if: github.ref == 'refs/heads/develop'
needs:
- build-release
uses: ./.github/workflows/deploy.yml
with:
service-name: identity-api
version: ${{ needs.build-release.outputs.new-version }}