Skip to content

Commit 3a5dcb4

Browse files
committed
submodules
1 parent a6b8ee4 commit 3a5dcb4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@ on:
99
branches:
1010
- "main"
1111

12+
env:
13+
JUST_VERSION: "1.36.0"
14+
1215
jobs:
1316
test:
1417
name: 🧪 Test
1518
runs-on: ubuntu-24.04
1619
steps:
1720
- uses: actions/checkout@v4
18-
- run: git submodule update --init "${{ github.workspace }}/.github/install-scripts"
21+
with: { submodules: true }
1922
- run: source ./.github/install-scripts/just/main.ps1
2023
- run: source ./.github/install-scripts/rust/main.ps1
2124
- run: just test
@@ -25,7 +28,7 @@ jobs:
2528
runs-on: ubuntu-24.04
2629
steps:
2730
- uses: actions/checkout@v4
28-
- run: git submodule update --init "${{ github.workspace }}/.github/install-scripts"
31+
with: { submodules: true }
2932
- run: source ./.github/install-scripts/just/main.ps1
3033
- run: source ./.github/install-scripts/rust/main.ps1
3134
- run: just fmt
@@ -35,7 +38,7 @@ jobs:
3538
runs-on: ubuntu-24.04
3639
steps:
3740
- uses: actions/checkout@v4
38-
- run: git submodule update --init "${{ github.workspace }}/.github/install-scripts"
41+
with: { submodules: true }
3942
- run: source ./.github/install-scripts/just/main.ps1
4043
- run: source ./.github/install-scripts/rust/main.ps1
4144
- run: just lint
@@ -84,7 +87,7 @@ jobs:
8487
runs-on: ${{ matrix.config.runner }}
8588
steps:
8689
- uses: actions/checkout@v4
87-
- run: git submodule update --init "${{ github.workspace }}/.github/install-scripts"
90+
with: { submodules: true }
8891
- run: . ./.github/install-scripts/just/main.ps1
8992
- run: . ./.github/install-scripts/rust/main.ps1 && rustup target add ${{ matrix.config.rustup_target }}
9093
- env:

0 commit comments

Comments
 (0)