Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/actions/build-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ runs:
6.0
7.0

- name: Copy global.json in place
shell: bash
run: cp global.example.json global.json

- name: Display dotnet version
shell: bash
run: dotnet --version

- name: Build
shell: bash
run: dotnet build -p:Configuration=Release ${{ inputs.project_file }}

- name: Remove global.json
shell: bash
run: rm global.json
Loading