Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Add GitHub actions (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleh-Yanushkevich authored Sep 2, 2023
1 parent b796201 commit 3e6c0fa
Show file tree
Hide file tree
Showing 5 changed files with 107 additions and 27 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

on: push

env:
CONFIGURATION: Release

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 -c ${{ env.CONFIGURATION }}

- name: Pack
run: dotnet pack -c ${{ env.CONFIGURATION }} --property:PackageOutputPath=../../pkgs

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: pkgs
path: |
./pkgs/*.nupkg
./pkgs/*.snupkg
- name: Test
run: dotnet test -c ${{ env.CONFIGURATION }} --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=OpenCover /p:CoverletOutput=./Coverage.xml

- name: Publish Coverage
uses: codecov/codecov-action@v3
with:
files: '**/*/Coverage.*.xml'
63 changes: 63 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
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_MyGet:
environment:
name: MyGet Gallery
runs-on: ubuntu-latest
needs: Build

steps:
- name: Download Artifacts
uses: actions/download-artifact@v3
- name: Push
run: dotnet nuget push **/*.nupkg -k ${{ secrets.MYGET_API_KEY }} -s 'https://www.myget.org/F/reportportal/api/v3/index.json'

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.Shared
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}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[![Build status](https://ci.appveyor.com/api/projects/status/al55r7ou2wkx67pj?svg=true)](https://ci.appveyor.com/project/nvborisenko/commons-net)
[![CI](https://github.com/reportportal/commons-net/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/commons-net/actions/workflows/ci.yml)
[![NuGet Badge](https://buildstats.info/nuget/reportportal.shared)](https://www.nuget.org/packages/reportportal.shared)
[![Coverage](https://codecov.io/gh/reportportal/commons-net/branch/master/graph/badge.svg)](https://codecov.io/gh/reportportal/commons-net)
25 changes: 0 additions & 25 deletions appveyor.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;netcoreapp3.1;net462;</TargetFrameworks>
<TargetFrameworks>net6.0;net462;</TargetFrameworks>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 3e6c0fa

Please sign in to comment.