Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila committed Sep 1, 2023
1 parent 9897d32 commit 0de29d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/githubpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ jobs:
uses: actions/setup-dotnet@main
with:
dotnet-version: 7.x
- name: Setup .NET workload android
run: dotnet workload install android
- name: Setup .NET workload wasm-tools
run: dotnet workload install wasm-tools
- name: Setup .NET workloads
run: dotnet workload restore src/PDFtoImage.sln
- name: Restore
run: dotnet restore src/PDFtoImage.sln
- name: Publish
Expand Down Expand Up @@ -84,4 +82,5 @@ jobs:

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main
2 changes: 1 addition & 1 deletion src/WebConverter/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,6 @@
window.resetImage = async (imageElementId) => {
const image = document.getElementById(imageElementId);
image.src = null;
image.src = 'favicon.png';
}
</script>

0 comments on commit 0de29d8

Please sign in to comment.