Skip to content

Commit 32c0745

Browse files
committed
Fix variable expansion?
1 parent c421012 commit 32c0745

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/autoconf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
git config --global core.eol lf
7272
7373
- name: Install Apache httpd
74-
if: runner.httpd != 'system'
74+
if: ${{ matrix.httpd }} != 'system'
7575
run: |
76-
git clone -q --depth=1 -b "${{ runner.httpd }}" https://github.com/apache/httpd
76+
git clone -q --depth=1 -b ${{ matrix.httpd }} https://github.com/apache/httpd
7777
cd httpd
7878
./buildconf --with-apr=/usr/bin/apr-1-config
7979
./configure --prefix=$HOME/root/httpd --with-mpm=event --enable-dav --enable-dav-fs

0 commit comments

Comments
 (0)