diff options
| author | NeroBurner <pyro4hell@gmail.com> | 2025-05-29 09:36:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-29 09:36:50 +0200 |
| commit | 22cb7e3388ace0b00098db53c9480ac12749012f (patch) | |
| tree | 094149915ee6bb3a9026dcddc83fbc82fe8b4b5e /.github/workflows | |
| parent | c3295d6d2a325f9a7418b15b943342635026926e (diff) | |
CI: use bash for get-base-ref-size job (#2305)
Same change as done in https://github.com/InfiniTimeOrg/InfiniTime/commit/c3295d6d2a325f9a7418b15b943342635026926e
But for get-base-ref-size job
The variable substitution I introduced are bash features. So they don't work with sh.
Update the size job to use `bash` instead of `sh` as shell
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5e32287d..00ea9382 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -162,6 +162,7 @@ jobs: - name: Output build size id: output-sizes + shell: bash run: | . /opt/build.sh .github/workflows/getSize.sh "$BUILD_DIR"/src/pinetime-app-*.out >> $GITHUB_OUTPUT |
