Bump System.Text.Json from 4.7.0 to 8.0.4 in /src/Opulence #74
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, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v1.0.0 | |
with: | |
version: 3.1.100 | |
- name: dotnet build | |
run: dotnet build opulence.sln -c Release | |
- name: dotnet test | |
run: dotnet test opulence.sln -c Release --no-build | |
- name: dotnet pack | |
run: | | |
mkdir ./artifacts | |
dotnet pack opulence.sln -c Release --no-build -o ./artifacts | |
- name: setup nuget | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
uses: NuGet/setup-nuget@v1.0.2 | |
with: | |
nuget-version: latest | |
- name: push packages (feedz.io) | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
run: | | |
for f in ./artifacts/*.nupkg | |
do | |
nuget push $f -source https://f.feedz.io/opulence/opulence/nuget/index.json -ApiKey ${{ secrets.FEEDZ_TOKEN }} | |
if [ $? -eq 0 ] | |
then | |
echo "successfully pushed $f" | |
else | |
echo "failed to push $f" >&2 | |
exit 1 | |
fi | |
done | |