Skip to content

Commit 5ec6d29

Browse files
committed
fix: use bash
Signed-off-by: Carlos A Becker <[email protected]>
1 parent 53c7647 commit 5ec6d29

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,17 @@ jobs:
2121
flags: ""
2222
steps:
2323
- if: ${{ github.event_name == 'workflow_dispatch' }}
24+
shell: bash
2425
run: echo "flags=--nightly" >> $GITHUB_ENV
2526
- if: matrix.os == 'ubuntu-latest'
27+
shell: bash
2628
run: echo "goos=linux" >> $GITHUB_ENV
2729
- if: matrix.os == 'macos-latest'
30+
shell: bash
2831
run: echo "goos=darwin" >> $GITHUB_ENV
2932
- if: matrix.os == 'windows-latest'
33+
shell: bash
3034
run: echo "goos=windows" >> $GITHUB_ENV
31-
- run: echo "${{ env.flags }} @ ${{ env.goos }}"
3235
- uses: actions/checkout@v3
3336
with:
3437
fetch-depth: 0

0 commit comments

Comments
 (0)