๐๏ธ Bump version to 1.1.4 (System.Text.Json security fix) #57
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.gitignore' | |
- '**/*.gitattributes' | |
pull_request: | |
branches: | |
- master | |
- release/* | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.gitignore' | |
- '**/*.gitattributes' | |
jobs: | |
build: | |
if: github.event_name == 'push' && contains(toJson(github.event.commits), '***NO_CI***') == false && contains(toJson(github.event.commits), '[ci skip]') == false && contains(toJson(github.event.commits), '[skip ci]') == false | |
runs-on: windows-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false | |
DOTNET_MULTILEVEL_LOOKUP: 0 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: setup .net core sdk | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel | |
- name: dotnet build | |
run: dotnet build instagram-basic-display.sln --configuration Release | |
- name: dotnet test | |
run: dotnet test instagram-basic-display.sln -c Release --no-build | |
- name: dotnet pack | |
run: dotnet pack instagram-basic-display.sln -c Release --no-build --include-source --include-symbols | |
- name: setup nuget | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
uses: NuGet/[email protected] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
with: | |
nuget-version: latest | |
- name: Publish NuGet | |
uses: rohith/[email protected] | |
with: | |
PROJECT_FILE_PATH: src/Core/Core.csproj # Relative to repository root | |
# VERSION_FILE_PATH: Directory.Build.props # Filepath with version info, relative to repository root. Defaults to project file | |
# VERSION_REGEX: <Version>(.*)<\/Version> # Regex pattern to extract version info in a capturing group | |
# TAG_COMMIT: true # Flag to enable / disable git tagging | |
# TAG_FORMAT: v* # Format of the git tag, [*] gets replaced with version | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} # nuget.org API key | |
PACKAGE_NAME: Solrevdev.InstagramBasicDisplay | |