We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2afa1 commit dc49bdeCopy full SHA for dc49bde
.github/workflows/release.yml
@@ -11,10 +11,9 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Install Deno
15
- uses: denoland/setup-deno@v1
+ - uses: actions/setup-python@v5
16
with:
17
- deno-version: v1.x
+ python-version: '3.10'
18
19
- uses: actions/setup-java@v4
20
@@ -43,7 +42,9 @@ jobs:
43
42
OUTPUT: CHANGES.md
44
45
- name: Replace build.gradle versions to current tag
46
- run: deno run --allow-run --allow-write --allow-read scripts/replace-gradle-version.js --version=${{ github.ref_name }}
+ run: |
+ export PYTHONPATH="$(pwd)/scripts"
47
+ python scripts/replace-gradle-version.py ${{ github.ref_name }}
48
49
- name: Build libraries
50
run: ./gradlew build
0 commit comments