Fix duplicated default tag in swagger (#111) #55
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: Validate and Deploy | |
on: | |
push: | |
tags: | |
- 'dev**' | |
- 'staging**' | |
- 'prod**' | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
validate: | |
name: Validate code | |
uses: bratislava/github-actions/.github/workflows/validate-nest-prisma.yml@beta | |
conditions: | |
name: Check for cluster conditions | |
needs: validate | |
uses: bratislava/github-actions/.github/workflows/cluster-deploy-conditions-simple.yml@beta | |
permissions: write-all | |
deploy-dev: | |
name: Deploy to dev | |
if: needs.conditions.outputs.dev == 'true' | |
needs: conditions | |
uses: bratislava/github-actions/.github/workflows/deploy-with-bratiska-cli.yml@beta | |
with: | |
directory: ./ | |
cluster: tkg-innov-dev | |
url: https://tkg.dev.bratislava.sk | |
debug: --debug | |
version: beta | |
secrets: | |
service-account: ${{ secrets.DEV_STANDALONE_TOKEN }} | |
registry-pass: ${{ secrets.HARBOR_REGISTRY_PASSWORD }} | |
sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
permissions: write-all | |
deploy-staging: | |
name: Deploy to staging | |
if: needs.conditions.outputs.staging == 'true' | |
needs: [conditions] | |
uses: bratislava/github-actions/.github/workflows/deploy-with-bratiska-cli.yml@stable | |
with: | |
directory: ./ | |
cluster: tkg-innov-staging | |
url: https://tkg.staging.bratislava.sk | |
flag: --staging | |
debug: --debug | |
version: beta | |
secrets: | |
service-account: ${{ secrets.STAGING_STANDALONE_TOKEN }} | |
registry-pass: ${{ secrets.HARBOR_REGISTRY_PASSWORD }} | |
sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
permissions: write-all | |
deploy-prod: | |
name: Deploy to prod | |
if: needs.conditions.outputs.prod == 'true' | |
needs: [conditions] | |
uses: bratislava/github-actions/.github/workflows/deploy-with-bratiska-cli-inhouse.yml@beta | |
with: | |
directory: ./ | |
cluster: tkg-innov-prod | |
url: https://tkg.bratislava.sk | |
flag: --production | |
debug: --debug | |
secrets: | |
service-account: ${{ secrets.PROD_STANDALONE_TOKEN }} | |
registry-pass: ${{ secrets.HARBOR_REGISTRY_PASSWORD }} | |
sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
permissions: write-all |