Skip to content

Commit

Permalink
Add "apt-get update" before installing svn.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh authored Nov 22, 2024
1 parent 67394d6 commit e44034a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:
npm run build
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress Plugin Deploy

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
npm install
npm run build
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
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
4 changes: 3 additions & 1 deletion examples/deploy-on-pushing-a-new-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
npm install
npm run build
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
env:
Expand Down

0 comments on commit e44034a

Please sign in to comment.