File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1111 - name : Checkout repository
1212 uses : actions/checkout@master
1313
14+ - name : Install Subversion.
15+ run : |
16+ # Check if SVN is installed, if not install it.
17+ if ! command -v svn &> /dev/null
18+ then
19+ sudo apt-get update -y
20+ sudo apt-get install -y subversion
21+ fi
22+
1423 - name : Remove readme.md from WordPress.org deploy.
1524 run : |
1625 git rm readme.md
Original file line number Diff line number Diff line change 1919 git config --global user.name "10upbot on GitHub"
2020 git commit -m "Remove readme.md for WordPress.org deploy"
2121
22+ - name : Install Subversion.
23+ run : |
24+ # Check if SVN is installed, if not install it.
25+ if ! command -v svn &> /dev/null
26+ then
27+ sudo apt-get update -y
28+ sudo apt-get install -y subversion
29+ fi
30+
2231 - name : WordPress Plugin Deploy
2332 id : deploy
2433 uses : 10up/action-wordpress-plugin-deploy@stable
You can’t perform that action at this time.
0 commit comments