Skip to content

Commit 8909674

Browse files
committed
recursive was not correctly set up
1 parent 27a9445 commit 8909674

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

.github/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
1515
with:
16-
submodules: 'recursive'
16+
submodules: recursive
1717
fetch-depth: 1
1818

1919
- name: Set up Ninja
@@ -46,7 +46,7 @@ jobs:
4646
- name: Checkout code
4747
uses: actions/checkout@v4
4848
with:
49-
submodules: 'recursive'
49+
submodules: recursive
5050
fetch-depth: 1
5151

5252
- name: Set up Ninja
@@ -58,11 +58,7 @@ jobs:
5858
- name: Get version
5959
id: get_version
6060
run: |
61-
version=$(python ./.github/release.py --version)
62-
sha1=$(python ./.github/release.py --sha1)
63-
version_sha1=$(python ./.github/release.py --version --sha1)
64-
echo "version=$version" >> $GITHUB_OUTPUT
65-
echo "sha1=$sha1" >> $GITHUB_OUTPUT
61+
version_sha1=$(python3 .github/release.py --version --sha1)
6662
echo "version_sha1=$version_sha1" >> $GITHUB_OUTPUT
6763
6864
- name: Configure

0 commit comments

Comments
 (0)