Skip to content

Commit 67394d6

Browse files
committed
Update action examples to install svn
1 parent 2fc92c4 commit 67394d6

3 files changed

Lines changed: 8 additions & 0 deletions

examples/deploy-on-publishing-a-new-release-and-attach-a-zip-file-to-the-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ jobs:
5454
run: |
5555
npm install
5656
npm run build
57+
58+
- name: Install SVN ( Subversion )
59+
run: sudo apt-get install subversion
60+
5761
- name: WordPress Plugin Deploy
5862

5963
# You can add unique ids to specific steps if you want to reference their output later in the workflow.

examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
run: |
1515
npm install
1616
npm run build
17+
- name: Install SVN ( Subversion )
18+
run: sudo apt-get install subversion
1719
- name: WordPress Plugin Deploy
1820
id: deploy
1921
uses: 10up/action-wordpress-plugin-deploy@stable

examples/deploy-on-pushing-a-new-tag.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
run: |
1414
npm install
1515
npm run build
16+
- name: Install SVN ( Subversion )
17+
run: sudo apt-get install subversion
1618
- name: WordPress Plugin Deploy
1719
uses: 10up/action-wordpress-plugin-deploy@stable
1820
env:

0 commit comments

Comments
 (0)