Skip to content

Commit

Permalink
Change zip compression level (#282)
Browse files Browse the repository at this point in the history
* Change zip compression level

* Update packages
  • Loading branch information
shibayan authored Feb 12, 2021
1 parent 6984336 commit debef2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet publish -c Release -r win-x86 --self-contained false -o ./dist -p:Version=${{ steps.setup_version.outputs.VERSION }}

- name: Zip Functions
run: 7z a latest.zip ./dist/*
run: 7z a -mx=9 latest.zip ./dist/*

- name: Upload to Blob
run: az storage blob upload -f latest.zip -c azure-appservice-letsencrypt -n v3/latest.zip
Expand Down
4 changes: 2 additions & 2 deletions AppService.Acmebot/AppService.Acmebot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<PackageReference Include="Microsoft.Azure.Management.Dns" Version="3.0.1" />
<PackageReference Include="Microsoft.Azure.Management.ResourceManager" Version="3.11.1-preview" />
<PackageReference Include="Microsoft.Azure.Management.WebSites" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.6.0" />
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.6.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.4.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="3.1.11" />
<PackageReference Include="Microsoft.Extensions.Http" Version="3.1.12" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.11" />
<PackageReference Include="WebJobs.Extensions.HttpApi" Version="1.1.0" />
</ItemGroup>
Expand Down

0 comments on commit debef2a

Please sign in to comment.