Skip to content

Commit

Permalink
Set build.sh permissions in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jt185133 committed Jan 3, 2020
1 parent 3380f76 commit c2919ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Content/Console/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
dotnet-version: ${{ matrix.dotnet }}
- name: Build
if: runner.os != 'Windows'
run: ./build.sh
run: |
chmod +x ./build.sh
./build.sh
env:
# Work around https://github.com/actions/setup-dotnet/issues/29
DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
Expand Down
4 changes: 3 additions & 1 deletion Content/Library/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
dotnet-version: ${{ matrix.dotnet }}
- name: Build
if: runner.os != 'Windows'
run: ./build.sh
run: |
chmod +x ./build.sh
./build.sh
env:
# Work around https://github.com/actions/setup-dotnet/issues/29
DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
Expand Down

0 comments on commit c2919ea

Please sign in to comment.