Skip to content

Commit a23270a

Browse files
committed
chore: install uv and Node.JS
1 parent 002d96c commit a23270a

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/python-release.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,17 @@ jobs:
3434
with:
3535
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
3636

37-
- uses: actions/setup-python@v5
37+
- name: Use Python
38+
uses: actions/setup-python@v5
3839
with:
3940
python-version: 3.x
4041

42+
- name: Set up uv package manager
43+
uses: astral-sh/setup-uv@v5
44+
45+
- name: Use Node.js
46+
uses: actions/setup-node@v4
47+
4148
- name: Get current version
4249
id: get_version
4350
working-directory: impit-python
@@ -48,7 +55,7 @@ jobs:
4855
id: increment_version
4956
working-directory: impit-python
5057
run: |
51-
echo "new_version=$(npx semver -i ${ { github.event.inputs.bump } } ${{ steps.get_version.outputs.current_version }})" >> "$GITHUB_OUTPUT"
58+
echo "new_version=$(npx semver -i ${{ github.event.inputs.bump }} ${{ steps.get_version.outputs.current_version }})" >> "$GITHUB_OUTPUT"
5259
5360
- name: Show new version
5461
id: show_new_version

0 commit comments

Comments
 (0)