Skip to content

Commit 992b5c6

Browse files
authored
ci: install subversion in publish-svn workflows (#425)
1 parent 44473f1 commit 992b5c6

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/publish-svn-v2.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424

25+
- name: Install subversion
26+
run: sudo apt-get update && sudo apt-get install -y subversion
27+
2528
- name: Derive versions
2629
id: version
2730
run: |

.github/workflows/publish-svn.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- name: Checkout tagged commit
2121
uses: actions/checkout@v5
2222

23+
- name: Install subversion
24+
run: sudo apt-get update && sudo apt-get install -y subversion
25+
2326
- name: Strip v prefix from tag
2427
id: version
2528
run: echo "bare=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)