diff --git a/examples/deploy-on-publishing-a-new-release-and-attach-a-zip-file-to-the-release.yml b/examples/deploy-on-publishing-a-new-release-and-attach-a-zip-file-to-the-release.yml index bfea5a0..fa777b6 100644 --- a/examples/deploy-on-publishing-a-new-release-and-attach-a-zip-file-to-the-release.yml +++ b/examples/deploy-on-publishing-a-new-release-and-attach-a-zip-file-to-the-release.yml @@ -54,6 +54,12 @@ jobs: run: | npm install npm run build + + - name: Install SVN ( Subversion ) + run: | + sudo apt-get update + sudo apt-get install subversion + - name: WordPress Plugin Deploy # You can add unique ids to specific steps if you want to reference their output later in the workflow. diff --git a/examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml b/examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml index 8bb89a5..1c3b6e9 100644 --- a/examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml +++ b/examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml @@ -14,6 +14,10 @@ jobs: run: | npm install npm run build + - name: Install SVN ( Subversion ) + run: | + sudo apt-get update + sudo apt-get install subversion - name: WordPress Plugin Deploy id: deploy uses: 10up/action-wordpress-plugin-deploy@stable diff --git a/examples/deploy-on-pushing-a-new-tag.yml b/examples/deploy-on-pushing-a-new-tag.yml index adb84fa..78b3b97 100644 --- a/examples/deploy-on-pushing-a-new-tag.yml +++ b/examples/deploy-on-pushing-a-new-tag.yml @@ -13,6 +13,10 @@ jobs: run: | npm install npm run build + - name: Install SVN ( Subversion ) + run: | + sudo apt-get update + sudo apt-get install subversion - name: WordPress Plugin Deploy uses: 10up/action-wordpress-plugin-deploy@stable env: