Remove unneeded content on presigned put #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generic build | |
on: | |
push: | |
branches: | |
- 'master' | |
tags-ignore: | |
- '**' | |
env: | |
DOTNET_EnableDiagnostics: 0 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET Core 8.0 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '8.0.x' | |
- name: Build | |
run: dotnet build -c Release SimpleS3.sln |