From 8344403eebf22eb98c689b382279816b20f02059 Mon Sep 17 00:00:00 2001 From: solomiofactura Date: Thu, 26 Sep 2024 05:05:29 +0000 Subject: [PATCH] Fixed error: Error: Process completed with exit code 127. --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb5418c..7b5ddfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - master + - master # Adjust the branch as necessary jobs: build: @@ -13,12 +13,10 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set NugetApiKey environment variable - env: - NugetApiKey: ${{ secrets.TRI_MONTHLY_TEMPO }} # Set the environment variable using the secret - run: echo "NugetApiKey is set" # Just a confirmation message, do not print the actual key + - name: List files in workspace + run: ls -R /workspaces/PersistedAssemblyBuilder.ConsoleApp/ - name: Set up environment + run: bash .devcontainer/load-env.sh env: - NugetApiKey: ${{ secrets.TRI_MONTHLY_TEMPO }} # Use the secret for the next command - run: bash /workspaces/PersistedAssemblyBuilder.ConsoleApp/.devcontainer/load-env.sh + NugetApiKey: ${{ secrets.TRI_MONTHLY_TEMPO }}