Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #288
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
env: | |
# Stop wasting time caching packages | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
# Disable sending usage data to Microsoft | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
# GitHub Packages Feed settings | |
GITHUB_FEED: https://nuget.pkg.github.com/koenbeuk/ | |
GITHUB_USER: koenbeuk | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
version: [1, 2, 3] | |
include: | |
- version: 1 | |
configuration: ReleaseV1 | |
- version: 2 | |
configuration: ReleaseV2 | |
- version: 3 | |
configuration: Release | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
include-prerelease: True | |
- name: Install dependencies | |
run: dotnet restore EntityFrameworkCore.Triggered.sln -p:Configuration=${{ matrix.configuration }} | |
- name: Build | |
run: dotnet build --configuration ${{ matrix.configuration }} --no-restore EntityFrameworkCore.Triggered.sln | |
- name: Test | |
run: dotnet test --configuration ${{ matrix.configuration }} --verbosity normal EntityFrameworkCore.Triggered.sln | |
- name: Pack | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
dotnet pack -v normal --configuration ${{ matrix.configuration }} --include-symbols --include-source -p:PackageVersion=${{ matrix.version }}-pre-$GITHUB_RUN_ID -o nupkg EntityFrameworkCore.Triggered.Core.slnf | |
- name: Upload Artifact | |
if: matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nupkg | |
path: ./nupkg/*.nupkg | |
build-samples: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
include-prerelease: True | |
- name: Install dependencies | |
run: dotnet restore EntityFrameworkCore.Triggered.Samples.slnf | |
- name: Build | |
run: dotnet build --configuration Release --no-restore EntityFrameworkCore.Triggered.Samples.slnf | |
prerelease: | |
needs: build | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Artifact | |
uses: actions/[email protected] | |
with: | |
name: nupkg | |
- name: Push to GitHub Feed | |
run: | | |
for f in ./nupkg/*.nupkg | |
do | |
dotnet nuget push $f --source $GITHUB_FEED --api-key ${{github.token}} --skip-duplicate --no-symbols | |
done |