Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Sep 6, 2023
1 parent 6af82d6 commit 42254b0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: build-${{ matrix.os }}
retention-days: 1
path: |
install_dir*/*
install_dir
test:
strategy:
Expand All @@ -54,15 +54,19 @@ jobs:
with:
name: build-${{ matrix.os }}

- name: ls -l bin
shell: bash
run: ls -l bin

- name: update environment (Windows)
if: contains(matrix.os, 'windows')
run: |
echo "$pwd\install_dir\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "$pwd\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
cat $env:GITHUB_PATH
- name: update environment (non-Windows)
if: ${{ !contains(matrix.os, 'windows') }}
run: |
echo "$PWD/install_dir/bin" >> $GITHUB_PATH
echo "$PWD/bin" >> $GITHUB_PATH
cat $GITHUB_PATH
- name: setup-server
uses: shogo82148/actions-setup-mysql@v1
Expand Down

0 comments on commit 42254b0

Please sign in to comment.