Skip to content

Commit 430659d

Browse files
authored
Merge pull request #1183 from watson-developer-cloud/bumpversion
fix(deploy): use python
2 parents f0a2524 + 03168b4 commit 430659d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
with:
3030
persist-credentials: false
3131

32+
- name: Set up Python
33+
uses: actions/setup-python@v2
34+
with:
35+
python-version: '3.8'
36+
3237
- name: Set up Java
3338
uses: actions/setup-java@v2
3439
with:
@@ -45,7 +50,7 @@ jobs:
4550

4651
- name: Install Semantic Release dependencies
4752
run: |
48-
sudo apt-get install bump2version
53+
pip3 install --user bump2version
4954
npm install -g semantic-release
5055
npm install -g @semantic-release/changelog
5156
npm install -g @semantic-release/exec

0 commit comments

Comments
 (0)