fix: resolve double URL-encoding and add singular NIFTY FIN SERVICE m… #400
This file contains hidden or 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: Market Data Publish | |
| on: | |
| push: | |
| branches: ["main", "develop", "test/**", "feature/**", "hotfix/**", "fix/**"] | |
| paths: | |
| - 'am-market-data/**' | |
| - 'am-common-investment-data/**' | |
| pull_request: | |
| branches: ["main", "develop", "test/**", "feature/**", "hotfix/**", "fix/**"] | |
| paths: | |
| - 'am-market-data/**' | |
| - 'am-common-investment-data/**' | |
| workflow_dispatch: | |
| jobs: | |
| install-common-lib: | |
| name: Install Common Investment Lib | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| cache: maven | |
| - name: Build and install am-common-investment-data | |
| working-directory: am-common-investment-data | |
| run: mvn clean install -DskipTests -B | |
| publish: | |
| name: Publish Market Data | |
| needs: install-common-lib | |
| permissions: | |
| contents: read | |
| packages: write | |
| uses: AM-Portfolio/am-pipelines/.github/workflows/central-build-publish.yml@main | |
| with: | |
| language: 'java' | |
| working_directory: 'am-market-data' | |
| image_name: 'am-market-data' | |
| build_context: '..' | |
| preprod_namespace: 'am-apps-preprod' | |
| prod_namespace: 'am-apps-prod' | |
| deploy_prod: true | |
| secrets: inherit |