From 709ebb21d57c18d710a70b232cb1b105ef2dae5d Mon Sep 17 00:00:00 2001 From: Hafiz Adewuyi Date: Fri, 23 Aug 2024 17:03:02 +0300 Subject: [PATCH] Upgrade deployment workflow for the API to.NET 8 on all environments. (#96) --- .github/workflows/api-deploy-PROD.yml | 2 +- .github/workflows/api-deploy-staging.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api-deploy-PROD.yml b/.github/workflows/api-deploy-PROD.yml index 06d7ba5..30152bd 100644 --- a/.github/workflows/api-deploy-PROD.yml +++ b/.github/workflows/api-deploy-PROD.yml @@ -23,7 +23,7 @@ jobs: secrets: inherit with: project-name: Api - dotnet-version: '6.0.x' + dotnet-version: '8.0.x' service-name: ${{ needs.fetch-vars.outputs.service_name }} service-path: ${{ needs.fetch-vars.outputs.service_path }} environment: PROD diff --git a/.github/workflows/api-deploy-staging.yml b/.github/workflows/api-deploy-staging.yml index 1448cf8..8f366a3 100644 --- a/.github/workflows/api-deploy-staging.yml +++ b/.github/workflows/api-deploy-staging.yml @@ -23,7 +23,7 @@ jobs: secrets: inherit with: project-name: Api - dotnet-version: '6.0.x' + dotnet-version: '8.0.x' service-name: ${{ needs.fetch-vars.outputs.service_name }} service-path: ${{ needs.fetch-vars.outputs.service_path }} environment: staging