mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 13:35:38 +00:00
25 lines
588 B
YAML
25 lines
588 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: 5.0.101
|
|
- run: dotnet run -p build/build.csproj
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.os }}-sharpcompress.nupkg
|
|
path: artifacts/*
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.os }}-sharpcompress.snupkg
|
|
path: artifacts/*
|