Skip to content

Commit 016ee6c

Browse files
authored
Fix script link --skip-build
1 parent 462252c commit 016ee6c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
operating-system: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04]
1212
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
1313
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
14+
if: "!contains(github.event.head_commit.message, 'skip-build')"
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v2
@@ -115,7 +116,7 @@ jobs:
115116
- name: Release
116117
run: |
117118
set -x
118-
curl -sLO https://github.com/php-ubuntu/releases/latest/download/install.sh
119+
curl -sLO https://github.com/shivammathur/php-ubuntu/releases/latest/download/install.sh
119120
assets=()
120121
for asset in ./builds/*/*; do
121122
assets+=("-a" "$asset")

0 commit comments

Comments
 (0)