Skip to content

Commit

Permalink
Explicitly specify bash shell
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed May 29, 2024
1 parent 487676c commit 0e6a899
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_env_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Set working directory as environment file (Windows)
run: echo "CURRENT_WORKING_DIR=%cd%" >> .env
shell: cmd
shell: bash
if: runner.os == 'Windows'


Expand All @@ -56,5 +56,5 @@ jobs:

- name: Print environment file
run: type .env
shell: cmd
shell: bash
if: runner.os == 'Windows'
4 changes: 2 additions & 2 deletions .github/workflows/testing_pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Save working directory to environment file (Windows)
run: echo GIN_DATA_DIR=%cd% >> .env
shell: cmd
shell: bash
if: runner.os == 'Windows'

# Display environment file for debugging
Expand All @@ -112,7 +112,7 @@ jobs:

- name: Print environment file
run: type .env
shell: cmd
shell: bash
if: runner.os == 'Windows'

# Run pipeline tests
Expand Down

0 comments on commit 0e6a899

Please sign in to comment.