diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index e2a471b..6ccf61c 100644 --- a/.github/workflows/build-deploy.yaml +++ b/.github/workflows/build-deploy.yaml @@ -173,10 +173,6 @@ jobs: fi dotnet publish ${{ inputs.webPath }} --configuration ${{ inputs.buildConfiguration }} --no-restore --output ${{ env.outputPath }} -p:WasmApplicationEnvironmentName=$WASM_ENV - - name: Install jq - if: inputs.functions != '[]' || inputs.spaSites != '[]' - run: sudo apt-get update && sudo apt-get install -y jq - - name: Build and Package All Lambda Functions if: env.NEEDS_DOTNET == 'true' && inputs.functions != '[]' run: | diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index 1c5ee46..6b00084 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -243,10 +243,6 @@ jobs: if: env.NEEDS_DOTNET == 'true' && inputs.webPath != '' run: dotnet publish ${{ inputs.webPath }} --configuration "${{ inputs.buildConfiguration }}" --no-restore --output ${{ env.outputPath }} - - name: Install jq - if: inputs.functions != '[]' || inputs.spaSites != '[]' - run: sudo apt-get update && sudo apt-get install -y jq - - name: Build and Package All Lambda Functions if: env.NEEDS_DOTNET == 'true' && inputs.functions != '[]' run: |