Skip to content

Commit

Permalink
Revert pipelines (#368)
Browse files Browse the repository at this point in the history
## Target
<!--
  Why are you making this change?
 -->
Revert pipelines
#### Open Questions
<!-- OPTIONAL
- [ ] Use the GitHub checklists to spark discussion on issues that may
arise from your approach. Please tick the box and explain your answer.
-->

## Checklist
<!--
It serves as a gentle reminder for common tasks. Confirm it's done and
check everything that applies.
-->
- [ ] Tests cover new or modified code
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the site documentation
- [ ] I have made corresponding changes to the README, NuGet README file
- [ ] My changes generate no new warnings
- [ ] New dependencies added or updated
- [ ] Includes breaking changes
- [ ] Version bumped

## Visuals
<!-- OPTIONAL
Show results both before and after this change. When the output changes,
it can be a screenshot of a trace, metric, or log illustrating the
change.
-->
  • Loading branch information
MaxymGorn authored Aug 4, 2024
2 parents 9288d63 + 67edf40 commit 730c673
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

# - name: Restore dependencies
# run: dotnet restore
# working-directory: src/Cropper.Blazor/Cropper.Blazor
- name: Restore dependencies
run: dotnet restore
working-directory: src/Cropper.Blazor/Cropper.Blazor

- name: Restore dotnet tool
run: dotnet tool restore
working-directory: src/Cropper.Blazor/Cropper.Blazor

# - name: Build
# run: dotnet build -c Release --no-restore
# working-directory: src/Cropper.Blazor/Cropper.Blazor
- name: Build
run: dotnet build -c Release --no-restore
working-directory: src/Cropper.Blazor/Cropper.Blazor

- name: Pack package
run: dotnet pack -c Release
Expand Down
2 changes: 1 addition & 1 deletion src/Cropper.Blazor/Cropper.Blazor/Cropper.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</Target>

<Target Name="ToolRestore" BeforeTargets="PreBuildEvent">
<!--<Exec ContinueOnError="true" Command="dotnet tool restore" StandardOutputImportance="high" />-->
<Exec ContinueOnError="true" Command="dotnet tool restore" StandardOutputImportance="high" />
</Target>

<Target Name="WebCompiler" DependsOnTargets="ToolRestore">
Expand Down

0 comments on commit 730c673

Please sign in to comment.