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 c086a3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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 @@ -53,16 +53,16 @@ jobs:
uses: actions/download-artifact@v3
with:
name: build-${{ matrix.os }}

run: dir 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 c086a3c

Please sign in to comment.