Skip to content

Commit 4b12249

Browse files
Remove spaces
1 parent 85a0dbe commit 4b12249

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,31 @@ on:
55
version:
66
description: 'WooCommerce Version'
77
required: true
8-
98
jobs:
109
build-and-deploy:
1110
runs-on: [ubuntu-latest]
12-
1311
steps:
1412
- name: Checkout code
1513
uses: actions/checkout@v2
16-
1714
- name: Setup PHP with composer v2
1815
uses: shivammathur/setup-php@v2
1916
with:
2017
php-version: '7.4'
2118
tools: composer:v2
22-
2319
- name: Get composer cache directory
2420
id: composer-cache
2521
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
26-
2722
- name: Cache dependencies
2823
uses: actions/cache@v2
2924
with:
3025
path: ${{ steps.composer-cache.outputs.dir }}
3126
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
3227
restore-keys: ${{ runner.os }}-composer-
33-
3428
- name: Install dependencies
3529
run: composer install --prefer-dist
36-
3730
- name: Build
3831
run: |
3932
./deploy.sh --build-only -s ${{ github.event.inputs.version }}
40-
4133
- name: Deploy to GitHub Pages
4234
if: success()
4335
uses: crazy-max/ghaction-github-pages@v2

0 commit comments

Comments
 (0)