pipeline #5
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: Release | |
env: | |
VERSION: '5.3.0' | |
ASM_VERSION: '5.0.0' | |
on: | |
push: | |
branches: | |
- master | |
- '5.3' | |
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/Config.Net.sln -c release --filter Category!=Integration | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Build | |
run: dotnet build src/Config.Net.sln --configuration Release /p:Version=${{ env.VERSION }} /p:FileVersion=${{ env.VERSION }} /p:AssemblyVersion=${{ env.ASM_VERSION }} | |
- name: collect artifacts | |
run: | | |
mkdir -p artifacts | |
cp src/Config.Net/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/* | |
# publish: | |
# needs: | |
# - build | |
# - test | |
# if: github.ref == 'refs/heads/master' | |
# runs-on: ubuntu-latest | |
# environment: nuget | |
# steps: | |
# - name: Download a Build Artifact | |
# uses: actions/download-artifact@v2 | |
# with: | |
# name: packages | |
# - 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: Release | |
# uses: softprops/action-gh-release@v1 | |
# if: github.ref == 'refs/heads/master' | |
# with: | |
# tag_name: ${{ env.v }} | |
# name: ${{ env.v }} | |
# files: "src/*.zip" | |
# generate_release_notes: true |