Skip to content

Commit

Permalink
workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
grofit committed Jan 3, 2025
1 parent a28739d commit fa1f943
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Build And Test
on: [push]

env:
BUILD_VERSION: 8.0.${{github.run_number}}
SOLUTION_FILE: "src/EcsR3.sln"
BUILD_VERSION: '8.0.${{github.run_number}}'
SOLUTION_FILE: 'src/EcsR3.sln'

jobs:
build-and-test:
Expand All @@ -17,6 +17,6 @@ jobs:
- name: Build
run: dotnet restore ${{SOLUTION_FILE}}
- name: Build
run: dotnet build --configuration Release -p:Version=${{BUILD_VERSION}} ${{SOLUTION_FILE}}
run: dotnet build --configuration Release -p:Version=${{ env.BUILD_VERSION }} ${{SOLUTION_FILE}}
- name: Test
run: dotnet test --configuration Release --no-build ${{SOLUTION_FILE}}
run: dotnet test --configuration Release --no-build ${{ env.SOLUTION_FILE }}

0 comments on commit fa1f943

Please sign in to comment.