Skip to content

Commit d10d331

Browse files
committed
use path in checkout
1 parent 1febb8d commit d10d331

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.github/workflows/artifact-size-metrics.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout Sources
2020
uses: actions/checkout@v4
21+
with:
22+
path: 'smithy-kotlin'
2123
- name: Configure JDK
2224
uses: actions/setup-java@v3
2325
with:
@@ -43,6 +45,8 @@ jobs:
4345
steps:
4446
- name: Checkout Sources
4547
uses: actions/checkout@v4
48+
with:
49+
path: 'smithy-kotlin'
4650
- name: Configure JDK
4751
uses: actions/setup-java@v3
4852
with:

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
steps:
3232
- name: Checkout sources
3333
uses: actions/checkout@v4
34+
with:
35+
path: 'smithy-kotlin'
3436
- name: Configure JDK
3537
uses: actions/setup-java@v3
3638
with:
@@ -53,6 +55,8 @@ jobs:
5355
steps:
5456
- name: Checkout sources
5557
uses: actions/checkout@v4
58+
with:
59+
path: 'smithy-kotlin'
5660
- name: Configure JDK
5761
uses: actions/setup-java@v3
5862
with:
@@ -80,6 +84,8 @@ jobs:
8084
steps:
8185
- name: Checkout sources
8286
uses: actions/checkout@v4
87+
with:
88+
path: 'smithy-kotlin'
8389
- name: Configure JDK
8490
uses: actions/setup-java@v3
8591
with:
@@ -115,8 +121,10 @@ jobs:
115121
# smithy-kotlin is checked out as a sibling dir which will automatically make it an included build
116122
path: 'aws-sdk-kotlin'
117123
repository: 'awslabs/aws-sdk-kotlin'
118-
- name: Configure Gradle
124+
- name: Configure Gradle for smithy-kotlin
119125
uses: ./smithy-kotlin/.github/actions/custom-gradle-distribution-url
126+
- name: Configure Gradle for aws-sdk-kotlin
127+
uses: ./aws-sdk-kotlin/.github/actions/custom-gradle-distribution-url
120128
- name: Configure JDK
121129
uses: actions/setup-java@v3
122130
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout sources
2020
uses: actions/checkout@v4
21+
with:
22+
path: 'smithy-kotlin'
2123
- name: Configure Gradle
2224
uses: ./smithy-kotlin/.github/actions/custom-gradle-distribution-url
2325
- name: Lint ${{ env.PACKAGE_NAME }}

0 commit comments

Comments
 (0)