Bump System.Text.Json from 8.0.2 to 8.0.3 in /build #140
Workflow file for this run
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Fetch all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Build | |
run: ./build.sh | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: artifacts/*.nupkg |