Skip to content

Update GitHub action to install SVN before deploy to WordPress.org #16

Update GitHub action to install SVN before deploy to WordPress.org

Update GitHub action to install SVN before deploy to WordPress.org #16

Workflow file for this run

name: Deploy to WordPress.org
on:
release:
types: [released]
# Allow manual triggering of the workflow.
workflow_dispatch:
jobs:
release:
name: New release to WordPress.org
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN (Subversion)
run: |

Check failure on line 16 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
sudo apt-get update
sudo apt-get install subversion
- name: Push to WordPress.org
uses: 10up/action-wordpress-plugin-deploy@stable
env:
SLUG: co-authors-plus
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}