Feat/update account (#9) #70
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: Deploy | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout to the branch | |
| uses: actions/checkout@v2 | |
| - name: Install .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Run tests | |
| run: dotnet test | |
| staging: | |
| name: Deploy to Staging | |
| needs: test | |
| environment: staging | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Checkout to the branch | |
| uses: actions/checkout@v2 | |
| - name: Azure Login | |
| uses: azure/login@v1 | |
| with: | |
| creds: ${{ secrets.AZURE_CREDENTIALS }} | |
| - name: Deploy to Azure Container Apps | |
| uses: azure/container-apps-deploy-action@v2 | |
| with: | |
| dockerfilePath: ./src/Gateway/Dockerfile | |
| imageToBuild: kairosfinance.azurecr.io/kairos/broker:latest | |
| azureCredentials: ${{ secrets.AZURE_CREDENTIALS }} | |
| appSourcePath: ${{ github.workspace }} | |
| yamlConfigPath: .github/capp-kairos-broker.yml | |
| resourceGroup: kairos | |
| acrName: kairosfinance | |
| containerAppEnvironment: cae-kairos | |
| containerAppName: capp-kairos-broker | |
| location: eastus2 |