Merge pull request #5228 from swaponline/shendel-patch-7 #1307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build WordPress plugin | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install, build and deploy | |
run: | | |
npm i | |
git config --global user.email "[email protected]" | |
git config --global user.name "buildbot" | |
sh scripts/buildWordPressPlugin $super_secret | |
env: | |
CI: true | |
super_secret: ${{ secrets.buildbot }} | |