mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-26 19:03:09 +00:00
21 lines
463 B
YAML
21 lines
463 B
YAML
name: SharpCompress
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest, ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 3.1.301
|
|
- run: dotnet run -p src/build/build.csproj
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.os }}-sharpcompress.nupkg
|
|
path: artifacts/*
|