Skip to content

Commit

Permalink
chore: fix yaml indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellmueller committed Jan 8, 2025
1 parent 58b5081 commit 0807280
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,28 +36,28 @@ jobs:
tag: ${{ github.sha }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')
analysis:
uses: ./.github/workflows/analysis.yml
tests:
uses: ./.github/workflows/tests.yml
tests-e2e:
name: Tests
needs: build-containers
uses: ./.github/workflows/e2e.yml
with:
tag: ${{ github.sha }}
secrets: inherit
deploy-to-aws-dev:
if: github.ref == 'refs/heads/main'
needs: [build-containers, tests-e2e]
name: Deploys Application to AWS dev
uses: ./.github/workflows/.deploy-app.yml
with:
app_env: dev
command: apply
environment_name: dev
tag: ${{ github.sha }}
secrets: inherit
promote:
needs: [deploy-to-aws-dev]
uses: ./.github/workflows/promote.yml
analysis:
uses: ./.github/workflows/analysis.yml
tests:
uses: ./.github/workflows/tests.yml
tests-e2e:
name: Tests
needs: build-containers
uses: ./.github/workflows/e2e.yml
with:
tag: ${{ github.sha }}
secrets: inherit
deploy-to-aws-dev:
if: github.ref == 'refs/heads/main'
needs: [build-containers, tests-e2e]
name: Deploys Application to AWS dev
uses: ./.github/workflows/.deploy-app.yml
with:
app_env: dev
command: apply
environment_name: dev
tag: ${{ github.sha }}
secrets: inherit
promote:
needs: [deploy-to-aws-dev]
uses: ./.github/workflows/promote.yml

0 comments on commit 0807280

Please sign in to comment.