Skip to content

Commit

Permalink
CI: Fix bash call (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Oct 1, 2024
1 parent f69fdb9 commit 748b953
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

defaults:
run:
shell: bash -l {0}
shell: bash -e {0}

env:
PYTHON_VERSION: "3.11"
Expand Down Expand Up @@ -60,6 +60,9 @@ jobs:
runs-on: ubuntu-latest
needs: [conda_build, waiting_room]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

defaults:
run:
shell: bash -l {0}
shell: bash -e {0}

jobs:
pixi_lock:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gallery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
shell: bash -e {0}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:

defaults:
run:
shell: bash -l {0}
shell: bash -e {0}

env:
DISPLAY: ":99.0"
Expand Down

0 comments on commit 748b953

Please sign in to comment.