Skip to content

Deploy to WordPress.org Repository #7

Deploy to WordPress.org Repository

Deploy to WordPress.org Repository #7

Workflow file for this run

# Based on https://github.com/marketplace/actions/wordpress-plugin-deploy
name: Deploy to WordPress.org Repository
on:
release:
types: [released]
jobs:
deploy_to_wp_repository:
name: Deploy to WP.org
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
# Optional: If your plugin is using composer dependencies, we want to include them
# WITHOUT the dev dependencies.
# - name: Build
# run: |
# npm install
# npm run build
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
with:
generate-zip: true
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
# After the deploy, we also want to create a zip and upload it to the release on Github. We don't want
# users to have to go to the repository to find our plugin.
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ steps.deploy.outputs.zip-path }}
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip