Skip to content

Publish to GH packages, attempt #12 #20

Publish to GH packages, attempt #12

Publish to GH packages, attempt #12 #20

Workflow file for this run

name: Build & Test
on:
push:
branches:
- develop
permissions:
packages: write
env:
DOTNET_VERSION: '8.0.x'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🔄
uses: actions/checkout@v4
- name: Setup .NET 📦
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore NuGet packages 📂
run: dotnet restore
working-directory: ./
- name: Build 🧱
run: dotnet build --configuration Release --no-restore
working-directory: ./
# xUnit doesn't have a nice way to exclude some testing assemblies, so execute each assembly separately for now.
- name: Test 🧪
run: dotnet test tests/Sanctuary.Core.Tests/Sanctuary.Core.Tests.csproj --configuration Release --logger GitHubActions --no-build
working-directory: ./
- name: Pack Sanctuary.Core
run: dotnet pack Sanctuary.Core/Sanctuary.Core.csproj --configuration Release /p:PackageVersion=1.0.0-${{ github.run_number }}-${{ github.sha }}
- name: Authenticate
run: dotnet nuget add source --username jahav --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/jahav/index.json"
- name: Push NuGet package to GitHub Packages
run: dotnet nuget push Sanctuary.Core/bin/Release/*.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source "github"