diff --git a/.github/workflows/db-prod.yml b/.github/workflows/db-prod.yml index 0a0aff4b3..1a2d4ef42 100644 --- a/.github/workflows/db-prod.yml +++ b/.github/workflows/db-prod.yml @@ -1,4 +1,4 @@ -# Deploys the Mobility Database to the DEV environment +# Deploys the Mobility Database to the PROD environment name: Deploy DB - PROD on: workflow_dispatch: # Supports manual deployment diff --git a/.github/workflows/db-qa.yml b/.github/workflows/db-qa.yml index 92f94a948..7d6f79678 100644 --- a/.github/workflows/db-qa.yml +++ b/.github/workflows/db-qa.yml @@ -1,4 +1,4 @@ -# Deploys the Mobility Database to the DEV environment +# Deploys the Mobility Database to the QA environment name: Deploy DB - QA on: workflow_dispatch: # Supports manual deployment diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 63d790413..bfd0abdf3 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -49,6 +49,7 @@ jobs: REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }} - name: Upload Test Logs + if: ${{ always() }} # always upload the available logs even if the integration tests failed. uses: actions/upload-artifact@v4 with: name: integration-tests-results diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75a28da98..84c20d33e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,14 +14,14 @@ jobs: needs: bd-deployment uses: ./.github/workflows/db-update-prod.yml secrets: inherit - bash-deployment: - name: Bash Processes Deployment + batch-deployment: + name: Batch Processes Deployment needs: bd-update uses: ./.github/workflows/datasets-batch-deployer-prod.yml secrets: inherit api-deployment: name: API Deployment - needs: bash-deployment + needs: batch-deployment uses: ./.github/workflows/api-prod.yml secrets: inherit integration-tests: @@ -33,6 +33,6 @@ jobs: REFRESH_TOKEN: ${{ secrets.PROD_API_TEST_REFRESH_TOKEN }} web-deployment: name: Web Deployment - needs: bash-deployment + needs: batch-deployment uses: ./.github/workflows/web-prod.yml secrets: inherit