Skip to content

Commit

Permalink
[INJICERT-187] seperated VCIssuance to new module for certify (#28)
Browse files Browse the repository at this point in the history
* [INJICERT-187] seperated VCIssuance to new module for certify (#26)

* [INJICERT-187] seperated VCIssuance to new module for certify
Signed-off-by: Challarao <[email protected]>

* [INJICERT-187] removed unused fields from audit dto
Signed-off-by: Challarao <[email protected]>

* [INJICERT-187] removed audit plugin implementation and changed the certify dependency version
Signed-off-by: Challarao <[email protected]>

* [DSD-5387]
Signed-off-by: Rakshithb1 <[email protected]>

* [DSD-5387]
Signed-off-by: Rakshithb1 <[email protected]>

---------

Signed-off-by: Rakshithb1 <[email protected]>
Co-authored-by: Rakshith B <[email protected]>
Co-authored-by: Rakshithb1 <[email protected]>
Co-authored-by: Chandra Keshav Mishra <[email protected]>
Signed-off-by: Vishwa <[email protected]>
  • Loading branch information
4 people authored Jun 6, 2024
1 parent 8686c68 commit 737c8be
Show file tree
Hide file tree
Showing 7 changed files with 757 additions and 345 deletions.
58 changes: 50 additions & 8 deletions .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,24 @@ on:
- develop
- MOSIP*
- release*
- INJICERT-13

jobs:
build-maven-digital-credential-plugins:
build-maven-sunbird-rc-esignet-integration-impl:
uses: mosip/kattu/.github/workflows/maven-build.yml@master
with:
SERVICE_LOCATION: ./sunbird-rc-esignet-integration-impl
BUILD_ARTIFACT: digital-credential-plugins
SERVICE_LOCATION: sunbird-rc-esignet-integration-impl
BUILD_ARTIFACT: sunbird-rc-esignet-integration-impl
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

publish_to_nexus:
publish_to_nexus_sunbird-rc-esignet-integration-impl:
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}"
needs: build-maven-digital-credential-plugins
needs: build-maven-sunbird-rc-esignet-integration-impl
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master
with:
SERVICE_LOCATION: ./sunbird-rc-esignet-integration-impl
Expand All @@ -47,9 +48,9 @@ jobs:
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
sonar_analysis:
needs: build-maven-digital-credential-plugins

sonar_analysis_sunbird-rc-esignet-integration-impl:
needs: build-maven-sunbird-rc-esignet-integration-impl
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master
with:
Expand All @@ -62,3 +63,44 @@ jobs:
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

build-maven-sunbird-rc-certify-integration-impl:
uses: mosip/kattu/.github/workflows/maven-build.yml@master-java21
with:
SERVICE_LOCATION: sunbird-rc-certify-integration-impl
BUILD_ARTIFACT: sunbird-rc-certify-integration-impl
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

publish_to_nexus_sunbird-rc-certify-integration-impl:
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}"
needs: build-maven-sunbird-rc-certify-integration-impl
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master-java21
with:
SERVICE_LOCATION: ./sunbird-rc-certify-integration-impl
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_URL: ${{ secrets.OSSRH_SNAPSHOT_URL }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

sonar_analysis:
needs: build-maven-sunbird-rc-certify-integration-impl
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master-java21
with:
SERVICE_LOCATION: ./sunbird-rc-certify-integration-impl
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
Loading

0 comments on commit 737c8be

Please sign in to comment.