svn commit: r1920690 - /apr/apr/trunk/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sun Sep 15 15:03:58 2024
New Revision: 1920690
URL: http://svn.apache.org/viewvc?rev=1920690&view=rev
Log:
.github/workflows/windows.yml: Run 'Install dependencies' step only if matrix.packages
is not empty.
Modified:
apr/apr/trunk/.github/workflows/windows.yml
Modified: apr/apr/trunk/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr/trunk/.github/workflows/windows.yml?rev=1920690&r1=1920689&r2=1920690&view=diff
==============================================================================
--- apr/apr/trunk/.github/workflows/windows.yml (original)
+++ apr/apr/trunk/.github/workflows/windows.yml Sun Sep 15 15:03:58 2024
@@ -125,6 +125,7 @@ jobs:
steps:
- name: Install dependencies
+ if: ${{ matrix.packages != '' }
run: vcpkg install --triplet ${{ matrix.triplet }} ${{ matrix.packages }}
- uses: actions/checkout@v4