-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4842c3
commit e5bfbeb
Showing
3 changed files
with
92 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI | ||
|
||
on: | ||
- push | ||
- workflow_dispatch | ||
|
||
jobs: | ||
|
||
Build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install CodeCov | ||
run: dotnet tool install -g codecov.tool | ||
|
||
- name: Build | ||
run: dotnet build | ||
|
||
- name: Pack | ||
run: dotnet pack --property:PackageOutputPath=../../pkgs | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pkgs | ||
path: | | ||
./pkgs/*.nupkg | ||
./pkgs/*.snupkg | ||
- name: Test | ||
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=OpenCover /p:CoverletOutput=./Coverage.xml | ||
|
||
- name: Publish Coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: '**/*/Coverage.*.xml' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
tags: '*' | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Pack | ||
run: dotnet pack -c Release --property:PackageOutputPath=../../pkgs | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pkgs | ||
path: | | ||
./pkgs/*.nupkg | ||
./pkgs/*.snupkg | ||
Publish_GitHub: | ||
environment: | ||
name: GitHub Packages | ||
runs-on: ubuntu-latest | ||
needs: Build | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
- name: Push | ||
run: dotnet nuget push **/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s 'https://nuget.pkg.github.com/reportportal/index.json' | ||
|
||
Publish_NuGet: | ||
if: startsWith(github.event.ref, 'refs/tags') | ||
environment: | ||
name: NuGet Gallery | ||
url: https://www.nuget.org/packages/ReportPortal.Reqnroll | ||
runs-on: ubuntu-latest | ||
needs: Build | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
- name: Push | ||
run: dotnet nuget push **/*.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API_KEY}} |
This file was deleted.
Oops, something went wrong.