Skip to content

Commit

Permalink
Remove CreateBitMonoArtifacts from action
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnamed434 committed Jul 24, 2024
1 parent ea19f74 commit b1c6661
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/actions/project-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ inputs:
project_path:
description: 'Path to project folder'
required: true
create_artifacts:
description: 'Creates artifacts'
required: false
target_framework:
description: 'The target framework to build on'
required: true
Expand Down Expand Up @@ -59,7 +56,7 @@ runs:
- name: Common commands
id: common-commands
run: |
echo "dotnet-restore=dotnet restore \$PROJECT_PATH --runtime ${{ inputs.runtime_version }}" -p:Configuration=Release -p:TargetFramework=${{ inputs.target_framework }} -p:CreateBitMonoArtifacts=${{ inputs.create_artifacts }} >> $GITHUB_OUTPUT
echo "dotnet-restore=dotnet restore \$PROJECT_PATH --runtime ${{ inputs.runtime_version }}" -p:Configuration=Release -p:TargetFramework=${{ inputs.target_framework }} >> $GITHUB_OUTPUT
echo "dotnet-build=dotnet build \$PROJECT_PATH --configuration Release --no-restore -p:TargetFramework=${{ inputs.target_framework }} -p:BitMonoVersion=${{ steps.get-version.outputs.version }} --runtime ${{ inputs.runtime_version }}" >> $GITHUB_OUTPUT
echo "dotnet-test=dotnet test \$PROJECT_PATH --configuration Release --no-restore --no-build -p:TargetFramework=${{ inputs.target_framework }} --runtime ${{ inputs.runtime_version }}" >> $GITHUB_OUTPUT
shell: bash
Expand Down

0 comments on commit b1c6661

Please sign in to comment.