mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-15 13:35:25 +00:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
561 B
YAML
26 lines
561 B
YAML
name: SharpCompress
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened, ready_for_review ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest, ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
- run: dotnet run --project build/build.csproj
|
|
- uses: actions/upload-artifact@v5
|
|
with:
|
|
name: ${{ matrix.os }}-sharpcompress.nupkg
|
|
path: artifacts/*
|