Skip to content

Commit 0b93ec3

Browse files
committed
Ensure we install svn in our workflows that need it, as this no longer comes with the latest ubuntu version
1 parent f52bf02 commit 0b93ec3

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/build-release-zip.yml

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
run: |
4040
npm run build
4141
42+
- name: Install SVN
43+
run: |
44+
sudo apt-get update
45+
sudo apt-get install subversion
46+
4247
- name: Generate ZIP file
4348
uses: 10up/action-wordpress-plugin-build-zip@stable
4449
env:

.github/workflows/wordpress-plugin-asset-update.yml

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
npm ci --no-optional
2626
npm run build
2727
28+
- name: Install SVN
29+
run: |
30+
sudo apt-get update
31+
sudo apt-get install subversion
32+
2833
- name: WordPress.org plugin asset/readme update
2934
uses: 10up/action-wordpress-plugin-asset-update@stable
3035
env:

.github/workflows/wordpress-plugin-deploy.yml

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
npm ci --no-optional
2525
npm run build
2626
27+
- name: Install SVN
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install subversion
31+
2732
- name: WordPress Plugin Deploy
2833
id: deploy
2934
uses: 10up/action-wordpress-plugin-deploy@stable

0 commit comments

Comments
 (0)