Skip to content

Commit 02ae50a

Browse files
authored
Merge pull request #155 from 10up/feature/update-action-examples
Update action examples to install svn
2 parents 2fc92c4 + e44034a commit 02ae50a

3 files changed

Lines changed: 14 additions & 0 deletions

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

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

5965
# 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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
run: |
1515
npm install
1616
npm run build
17+
- name: Install SVN ( Subversion )
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install subversion
1721
- name: WordPress Plugin Deploy
1822
id: deploy
1923
uses: 10up/action-wordpress-plugin-deploy@stable

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

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

0 commit comments

Comments
 (0)