Skip to content

Commit

Permalink
Merge pull request #73 from regolith-linux/run-shell-config
Browse files Browse the repository at this point in the history
fix: need to explicitly set run shell to use bash instead of sh
  • Loading branch information
khos2ow authored Feb 3, 2025
2 parents 6015a73 + 78ff753 commit 5b43e77
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-deb-v5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,15 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# Need to explicitly set shell according to: https://github.com/actions/runner/issues/353#issuecomment-1067227665
defaults:
run:
shell: bash

jobs:
matrix-builder:
runs-on: ubuntu-24.04
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
outputs:
stages: ${{ steps.calc-matrix.outputs.stages }}
distros: ${{ steps.calc-matrix.outputs.distros }}
Expand Down Expand Up @@ -346,6 +352,7 @@ jobs:
# update manifests
manifests:
runs-on: ubuntu-24.04
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
needs: build
steps:
- name: Checkout
Expand Down Expand Up @@ -389,6 +396,7 @@ jobs:
# calculate changelogs
changelogs:
runs-on: ubuntu-24.04
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
needs: build
outputs:
package-changed: ${{ steps.check.outputs.package-changed }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ on:
required: false
default: ""

# Need to explicitly set shell according to: https://github.com/actions/runner/issues/353#issuecomment-1067227665
defaults:
run:
shell: bash

jobs:
publish:
runs-on: ubuntu-24.04
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rebuild-sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ on:
required: false
default: ""

# Need to explicitly set shell according to: https://github.com/actions/runner/issues/353#issuecomment-1067227665
defaults:
run:
shell: bash

jobs:
rebuild:
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test-desktop-installable2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,15 @@ on:
required: false
default: ""

# Need to explicitly set shell according to: https://github.com/actions/runner/issues/353#issuecomment-1067227665
defaults:
run:
shell: bash

jobs:
matrix-builder:
runs-on: ubuntu-24.04
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
outputs:
stages: ${{ steps.calc-matrix.outputs.stages }}
arches: ${{ steps.calc-matrix.outputs.arches }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ on:
required: false
default: ""

# Need to explicitly set shell according to: https://github.com/actions/runner/issues/353#issuecomment-1067227665
defaults:
run:
shell: bash

jobs:
update:
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 5b43e77

Please sign in to comment.