Merge pull request #395 from Invizo/develop #17
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: Deploy to WordPress.org | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- master | |
jobs: | |
deploy-plugin: | |
name: Deploy Plugin | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build | |
run: | | |
composer install | |
composer dump-autoload | |
npm install | |
npm run build | |
- name: WordPress Plugin Deploy | |
uses: 10up/action-wordpress-plugin-deploy@stable | |
env: | |
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | |
SLUG: storegrowth-sales-booster | |
VERSION: 1.24.7 |