Fix workflow action version #2
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 SVN | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # Trigger deployment only when a new tag is pushed. | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: WordPress Plugin Deploy | |
uses: 10up/action-wordpress-plugin-deploy@v1 | |
with: | |
svn-url: https://plugins.svn.wordpress.org/cmb2-admin-extension/ | |
plugin-slug: cmb2-admin-extension | |
svn-username: ${{ secrets.WORDPRESS_USERNAME }} | |
svn-password: ${{ secrets.WORDPRESS_PASSWORD }} | |
generate-zip: true |