Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Feb 15, 2024
1 parent b4842c3 commit e5bfbeb
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 16 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
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'
51 changes: 51 additions & 0 deletions .github/workflows/release.yml
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}}
16 changes: 0 additions & 16 deletions appveyor.yml

This file was deleted.

0 comments on commit e5bfbeb

Please sign in to comment.