Skip to content

build(deps): bump Refit from 6.3.2 to 7.2.22 in /Notion.Sharp #306

build(deps): bump Refit from 6.3.2 to 7.2.22 in /Notion.Sharp

build(deps): bump Refit from 6.3.2 to 7.2.22 in /Notion.Sharp #306

Workflow file for this run

name: Build
on:
pull_request:
paths-ignore:
- '**/README.md'
- '**/.gitignore'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
runs-on: ubuntu-latest
environment: development
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('src/**/*.csproj') }}
- name: Nuke
run: |
./build.sh NugetPublish \
--configuration Release \
--github-token "${{ secrets.GITHUB_TOKEN }}" \
--notion-key "${{ secrets.NOTION }}"
- uses: actions/upload-artifact@v3
name: Upload test results
with:
name: tests
path: output/artifacts/tests
- uses: actions/upload-artifact@v3
name: Upload warnings count
with:
name: warnings
path: output/artifacts/warnings
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: coverage
path: output/coverage/coverage.json