feat: enable cloud native on oracle-api (#1327) #401
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: Merge | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '*.md' | |
- '.github/**' | |
- '.github/graphics/**' | |
- '!.github/workflows/**' | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "Container tag; e.g. PR number or latest" | |
type: string | |
default: latest | |
concurrency: | |
# Do not interrupt previous workflows | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
deploys: | |
name: TEST | |
secrets: inherit | |
uses: ./.github/workflows/.deploy.yml | |
with: | |
tag: ${{ inputs.tag }} # Uses PR number if blank | |
target: test | |
log_env_target: test | |
deploy-prod: | |
name: PROD | |
needs: [deploys] | |
secrets: inherit | |
uses: ./.github/workflows/.deploy.yml | |
with: | |
tag: ${{ inputs.tag }} # Uses PR number if blank | |
target: prod | |
log_env_target: production |