Skip to content

Commit

Permalink
Ignore SSL certificate error (because VMware has not updated their ex…
Browse files Browse the repository at this point in the history
…pired certificate yet!)
  • Loading branch information
justinshannon committed Dec 12, 2021
1 parent 50f9aed commit a4ad169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
- name: Setup InstallBuilder
shell: bash
run: |
curl -L ${{ env.IB_URL }} --output ib.run
curl -k -L ${{ env.IB_URL }} --output ib.run
chmod +x ib.run
./ib.run --mode unattended --prefix ${{ env.IB_DIR }}
${{ env.IB_DIR }}/bin/builder --version
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
- name: Setup InstallBuilder
shell: bash
run: |
curl -L ${{ env.IB_URL }} --output ib.exe
curl -k -L ${{ env.IB_URL }} --output ib.exe
./ib.exe --mode unattended --prefix ${{ env.IB_DIR }}
${{ env.IB_DIR }}/bin/builder-cli.exe --version
echo "$IB_LICENSE" > lic.xml
Expand Down Expand Up @@ -447,7 +447,7 @@ jobs:
- name: Setup InstallBuilder
shell: bash
run: |
curl -L ${{ env.IB_URL }} --output ib.dmg
curl -k -L ${{ env.IB_URL }} --output ib.dmg
hdiutil attach ib.dmg
/Volumes/InstallBuilder\ Enterprise/*.app/Contents/MacOS/installbuilder.sh --mode unattended --prefix ${{ env.IB_DIR }}
${{ env.IB_DIR }}/bin/builder --version
Expand Down

0 comments on commit a4ad169

Please sign in to comment.