Skip to content

Commit 100d2b1

Browse files
testing:github action download azul zulu
1 parent a303280 commit 100d2b1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release_asset_upload.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
fileName: "quickstart-portable_${{ env.QUICKSTART_VERSION }}_windows_amd64.zip"
5555
out-file-path: ${{ env.DOWNLOADS_DIR }}
5656

57-
- name: Download Macos apple chip TPIsoftwareOSPO quickstart portable
57+
- name: Download Macos M chip TPIsoftwareOSPO quickstart portable
5858
uses: robinraju/release-downloader@v1
5959
with:
6060
repository: TPIsoftwareOSPO/quickstart
@@ -64,16 +64,16 @@ jobs:
6464

6565
- name: Download Java 21 JRE from Azul Zulu
6666
run: |
67-
echo "Downloading Win Java JRE from: $WIN_JRE_URL"
68-
curl -L -o ${{ env.DOWNLOADS_DIR }}/win/java_jre.zip $WIN_JRE_URL
67+
echo "Downloading Win Java JRE from: ${{ env.WIN_JRE_URL }}"
68+
curl -L -o ${{ env.DOWNLOADS_DIR }}/win/java_jre.zip ${{ env.WIN_JRE_URL }}
6969
if [ $? -ne 0 ]; then
70-
echo "Error: Java JRE download failed from $WIN_JRE_URL"
70+
echo "Error: Java JRE download failed from ${{ env.WIN_JRE_URL }}"
7171
exit 1
7272
fi
73-
echo "Downloading Mac Java JRE from: $MAC_JRE_URL"
74-
curl -L -o ${{ env.DOWNLOADS_DIR }}/mac/java_jre.zip $MAC_JRE_URL
73+
echo "Downloading Mac Java JRE from: ${{ env.MAC_JRE_URL }}"
74+
curl -L -o ${{ env.DOWNLOADS_DIR }}/mac/java_jre.zip ${{ env.MAC_JRE_URL }}
7575
if [ $? -ne 0 ]; then
76-
echo "Error: Java JRE download failed from $MAC_JRE_URL"
76+
echo "Error: Java JRE download failed from ${{ env.MAC_JRE_URL }}"
7777
exit 1
7878
fi
7979

0 commit comments

Comments
 (0)