Skip to content

Commit

Permalink
chore(libheifactions)#Use powershell syntax for output directory vari…
Browse files Browse the repository at this point in the history
…able instead of bash on windows configiguration
  • Loading branch information
BlueCyro committed Jul 25, 2024
1 parent 9c3a6df commit 3815455
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:

- name: Create output directory variable
id: buildoutput
shell: bash
run: echo "build-output-dir='${{ github.workspace }}/build'" >> "$GITHUB_OUTPUT"

- name: Configure CMake
Expand All @@ -50,7 +49,7 @@ jobs:

Build-Windows:
runs-on: windows-latest

steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -65,8 +64,7 @@ jobs:

- name: Create output directory variable
id: buildoutput
shell: bash
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$Env:GITHUB_OUTPUT"

- name: Configure CMake
working-directory: ${{ steps.buildoutput.outputs.build-output-dir }}
Expand Down

0 comments on commit 3815455

Please sign in to comment.