Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,13 @@ jobs:
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# A container job defaults to `sh`, not the `bash` a runner-hosted job gets, and dash
# rejects `set -o pipefail` outright: the build step below died on its own first line
# with "Illegal option -o pipefail", before compiling anything. Declaring the shell for
# the whole job keeps a later step from silently inheriting dash again.
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
Loading