Skip to content

Commit 9943cf6

Browse files
committed
Fix reusable workflows usage
1 parent 3be62b9 commit 9943cf6

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

.github/workflows/build_prod.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ on:
1010

1111
jobs:
1212
ci-checks:
13-
uses: .github/workflows/ci_checks.yml
14-
with:
15-
run-build-checks: false
13+
runs-on: [ ubuntu-latest ]
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: .github/workflows/ci_checks.yml
17+
with:
18+
run-build-checks: false
1619

1720
build_app_bundle:
1821
runs-on: [ ubuntu-latest ]

.github/workflows/build_sandbox.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ on:
99

1010
jobs:
1111
ci-checks:
12-
uses: .github/workflows/ci_checks.yml
13-
with:
14-
run-build-checks: false
12+
runs-on: [ ubuntu-latest ]
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: .github/workflows/ci_checks.yml
16+
with:
17+
run-build-checks: false
1518

1619
build_app_bundle:
1720
runs-on: [ ubuntu-latest ]

.github/workflows/build_staging.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ on:
99

1010
jobs:
1111
ci-checks:
12-
uses: .github/workflows/ci_checks.yml
13-
with:
14-
run-build-checks: false
12+
runs-on: [ ubuntu-latest ]
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: .github/workflows/ci_checks.yml
16+
with:
17+
run-build-checks: false
1518

1619
build_app_bundle:
1720
runs-on: [ ubuntu-latest ]

.github/workflows/ci_checks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ jobs:
7878

7979
verify_prod_release_bundle:
8080
if: github.event.inputs.run-build-checks == null || github.event.inputs.run-build-checks
81-
uses: .github/workflows/build_prod.yml
81+
runs-on: [ ubuntu-latest ]
82+
steps:
83+
- uses: actions/checkout@v3
84+
- uses: .github/workflows/build_prod.yml
8285

8386
verify_room_schemas:
8487
runs-on: [ ubuntu-latest ]

0 commit comments

Comments
 (0)