Skip to content

Commit

Permalink
Ensure we install svn in our workflows that need it, as this no longe…
Browse files Browse the repository at this point in the history
…r comes with the latest ubuntu version
  • Loading branch information
dkotter committed Dec 19, 2024
1 parent f52bf02 commit 0b93ec3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-release-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
run: |
npm run build
- name: Install SVN
run: |
sudo apt-get update
sudo apt-get install subversion
- name: Generate ZIP file
uses: 10up/action-wordpress-plugin-build-zip@stable
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/wordpress-plugin-asset-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
npm ci --no-optional
npm run build
- name: Install SVN
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress.org plugin asset/readme update
uses: 10up/action-wordpress-plugin-asset-update@stable
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/wordpress-plugin-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
npm ci --no-optional
npm run build
- name: Install SVN
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
Expand Down

0 comments on commit 0b93ec3

Please sign in to comment.