Deploy to WordPress.org #4
Workflow file for this run
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: | |
- "*" | |
jobs: | |
tag: | |
name: New tag | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP environment | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '7.4' # Adjust depending on your PHP version | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install Composer dependencies and dump autoload | |
run: | | |
composer install --prefer-dist --no-progress --no-suggest | |
composer dump-autoload -o | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '16' # Adjust depending on your Node.js version | |
- name: Install NPM dependencies and Build assets | |
run: | | |
npm install | |
npm run build | |
- name: WordPress Plugin Deploy | |
uses: 10up/action-wordpress-plugin-deploy@stable | |
env: | |
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | |
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
SLUG: woo-preview-emails |