Skip to content

Commit

Permalink
updating github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Mar 16, 2024
1 parent e08a9d8 commit f94707c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,20 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

# - if: runner.os == 'Windows'
# name: testing variables
# run: |
# echo "EDGE_USE_CORECLR=1" | Out-File -FilePath $env:GITHUB_ENV -Append
# echo "${{ env.EDGE_USE_CORECLR }}"
# echo "EDGE_USE_CORECLR=" | Out-File -FilePath $env:GITHUB_ENV -Append
# echo "${{ env.EDGE_USE_CORECLR }}"
# SET EDGE_USE_CORECLR=1
# echo "${{ env.EDGE_USE_CORECLR }}"
- if: runner.os == 'Windows'
name: testing variables
env:
EDGE_USE_CORECLR: 1 # required to setup CSC
run: |
echo "EDGE_USE_CORECLR=1" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "${{ env.EDGE_USE_CORECLR }}"
echo "EDGE_USE_CORECLR=" | Out-File -FilePath $env:GITHUB_ENV -Append
echo "${{ env.EDGE_USE_CORECLR }}"
SET EDGE_USE_CORECLR=1
echo "${{ env.EDGE_USE_CORECLR }}"
- name: Setup NodeJS
Expand Down

0 comments on commit f94707c

Please sign in to comment.