mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
ci/actions/build: specify shell
This commit is contained in:
parent
fc8f4b2624
commit
b2a158bf32
1 changed files with 2 additions and 1 deletions
3
.github/actions/build/action.yml
vendored
3
.github/actions/build/action.yml
vendored
|
@ -32,6 +32,7 @@ runs:
|
||||||
attr: ${{ inputs.attribute }}
|
attr: ${{ inputs.attribute }}
|
||||||
attrs: ${{ inputs.attributes || '[]' }}
|
attrs: ${{ inputs.attributes || '[]' }}
|
||||||
groups: ${{ inputs.attributeGroups || '{}' }}
|
groups: ${{ inputs.attributeGroups || '{}' }}
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set -Eeu
|
set -Eeu
|
||||||
builds=$(
|
builds=$(
|
||||||
|
@ -51,12 +52,12 @@ runs:
|
||||||
)
|
)
|
||||||
echo "builds=$builds" >> "$GITHUB_OUTPUT"
|
echo "builds=$builds" >> "$GITHUB_OUTPUT"
|
||||||
- name: Build
|
- name: Build
|
||||||
if: inputs.attributeGroups
|
|
||||||
env:
|
env:
|
||||||
builds_json: ${{ steps.builds.outputs.builds }}
|
builds_json: ${{ steps.builds.outputs.builds }}
|
||||||
keep_going_flag: ${{ inputs.keepGoing && '--keep-going' || '' }}
|
keep_going_flag: ${{ inputs.keepGoing && '--keep-going' || '' }}
|
||||||
abort_on_warn_flag: ${{ inputs.abortOnWarn && '--abort-on-warn' || '' }}
|
abort_on_warn_flag: ${{ inputs.abortOnWarn && '--abort-on-warn' || '' }}
|
||||||
fail_fast: ${{ inputs.keepGoing && '' || true }}
|
fail_fast: ${{ inputs.keepGoing && '' || true }}
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
ok=0
|
ok=0
|
||||||
error=0
|
error=0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue