Skip to content

Commit

Permalink
Skip dot in filename for executable
Browse files Browse the repository at this point in the history
  • Loading branch information
stloyd committed Sep 19, 2023
1 parent ab8130b commit 7988d12
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
OS="macos-x86_64"
fi
echo "OS=$OS" >> $GITHUB_ENV
PHP=${{ matrix.php-version }}
PHP=${PHP//.}
echo "PHP=$PHP" >> $GITHUB_ENV
- name: "Download SPC bin artifact"
id: download-spc-artifact
Expand Down Expand Up @@ -96,13 +99,13 @@ jobs:
run: |
SPC_USE_SUDO=yes ./spc doctor --auto-fix
./spc build pcntl,posix,mbstring,tokenizer,dom,xmlreader,filter,openssl,bcmath,gmp,fileinfo,phar --build-micro
./spc micro:combine flow-php.phar -O flow-php-${{ matrix.php-version }}-${{env.OS}}
./spc micro:combine flow-php.phar -O flow-php-${{ env.PHP }}-${{ env.OS }}
- name: "Validate Flow bin"
run: |
./flow-php-${{ matrix.php-version }}-${{env.OS}} --version
./flow-php-${{ env.PHP }}-${{ env.OS }} --version
- uses: actions/upload-artifact@v3
with:
name: flow-php-${{ matrix.php-version }}-${{env.OS}}
path: flow-php-${{ matrix.php-version }}-${{env.OS}}
name: flow-php-${{ env.PHP }}-${{ env.OS }}
path: flow-php-${{ env.PHP }}-${{ env.OS }}

0 comments on commit 7988d12

Please sign in to comment.