Skip to content

cached storage

cached storage #4

Workflow file for this run

name: lib
env:
VERSION: 2.1.0
ASM_VERSION: 2.0.0
VERSION_SUFFIX: '-pre.5'
# VERSION_SUFFIX: ''
on:
push:
branches:
- master
paths-ignore:
- docs/*
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: run tests
run: dotnet test src/Stowage.sln -c release --filter Category!=Integration
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check-out source code
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
8.0.x
- name: Build
run: dotnet build src/Stowage.sln --configuration Release /p:Version=${{ env.VERSION }}${{ env.VERSION_SUFFIX }} /p:FileVersion=${{ env.VERSION }} /p:AssemblyVersion=${{ env.ASM_VERSION }}
- name: collect artifacts
run: |
mkdir -p artifacts
cp src/Stowage/bin/Release/*.nupkg artifacts/
echo "${{ env.VERSION }}" >> artifacts/version.txt
cp docs/release-history.md artifacts/
grep -m 2 -B 1000 '^## ' artifacts/release-history.md | tail -n +3 | head -n -2 > artifacts/release-notes.md
cat artifacts/release-notes.md
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: bin
path: artifacts/*
release:
runs-on: ubuntu-latest
needs:
- build
- test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/download-artifact@v4
with:
name: bin
- name: print releaes notes
run: cat release-notes.md
# publish to nuget regardless
- name: Push to nuget.org
run: dotnet nuget push *.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: 📢 Create release
uses: softprops/action-gh-release@v1
if: ${{ !env.VERSION_SUFFIX }}
with:
tag_name: ${{ env.VERSION }}
name: ${{ env.VERSION }}
files: |
*.nupkg
body_path: release-notes.md