Skip to content

Commit 1774771

Browse files
authored
Update msbuild.yml
1 parent 79677c0 commit 1774771

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/msbuild.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ env:
2121
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
2222
BUILD_CONFIGURATION: Debug
2323

24-
DOWNLOADS_DIR: ${{ runner.temp }}/downloads"
25-
DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies"
26-
GITHUB_ENV: ${{ github.env }}"
27-
GITHUB_PATH: ${{ github.path }}"
24+
DOWNLOADS_DIR: ${{runner.temp}}/downloads"
25+
DEPENDENCIES_DIR: ${{runner.temp}}/dependencies"
26+
GITHUB_ENV: ${{github.env}}"
27+
GITHUB_PATH: ${{github.path}}"
2828

2929
#Set download URL for ARM Performance Libraries (APL)
3030
DOWNLOAD_URL: "https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_24.10/arm-performance-libraries_24.10_Windows.msi"
@@ -50,13 +50,13 @@ jobs:
5050
- name: Create directories
5151
run: |
5252
mkdir -p ${{ runner.temp }}/downloads
53-
mkdir -p ${{ runner.temp }}/dependencie
53+
mkdir -p ${{ runner.temp }}/dependencies
5454
5555
- name: Download ARM Performance Libraries (APL)
5656
run: |
57-
echo ${{ env.DOWNLOADS_DIR }}
58-
echo ${{ env.DOWNLOAD_URL }}
59-
curl -L -o "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" ${{ env.DOWNLOAD_URL }}
57+
echo ${{env.DOWNLOADS_DIR}}
58+
echo ${{env.DOWNLOAD_URL}}
59+
curl -L -o "${{env.DOWNLOADS_DIR}}/arm-performance-libraries.msi" ${{env.DOWNLOAD_URL}}
6060
6161
- name: Install ARM Performance Libraries (APL)
6262
run: msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"

0 commit comments

Comments
 (0)