Skip to content

Commit e44034a

Browse files
authored
Add "apt-get update" before installing svn.
1 parent 67394d6 commit e44034a

3 files changed

+9
-3
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ jobs:
5656
npm run build
5757
5858
- name: Install SVN ( Subversion )
59-
run: sudo apt-get install subversion
59+
run: |
60+
sudo apt-get update
61+
sudo apt-get install subversion
6062
6163
- name: WordPress Plugin Deploy
6264

examples/deploy-on-pushing-a-new-tag-and-create-release-with-attached-zip.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
npm install
1616
npm run build
1717
- name: Install SVN ( Subversion )
18-
run: sudo apt-get install subversion
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install subversion
1921
- name: WordPress Plugin Deploy
2022
id: deploy
2123
uses: 10up/action-wordpress-plugin-deploy@stable

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
npm install
1515
npm run build
1616
- name: Install SVN ( Subversion )
17-
run: sudo apt-get install subversion
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install subversion
1820
- name: WordPress Plugin Deploy
1921
uses: 10up/action-wordpress-plugin-deploy@stable
2022
env:

0 commit comments

Comments
 (0)