Skip to content

Commit

Permalink
Fixed error: Error: Process completed with exit code 127.
Browse files Browse the repository at this point in the history
  • Loading branch information
solomiofactura committed Sep 26, 2024
1 parent 48a3382 commit 8344403
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- master
- master # Adjust the branch as necessary

jobs:
build:
Expand All @@ -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 }}

0 comments on commit 8344403

Please sign in to comment.