Files
DevOpsExamples/.gitea/workflows/main_build-console_jfrog.yml
T
Lance McCarthy 82e0ef17e9
ASP.NET AJAX / build_web_app (push) Waiting to run
Angular / build_angular (push) Waiting to run
ASP.NET Core (with Reporting) / build_windows (push) Waiting to run
Blazor (with Reporting) / build_windows (push) Waiting to run
Blazor (with Reporting) / build_linux (push) Waiting to run
Console (.NET) / build_console (arm64, linux) (push) Waiting to run
Console (.NET) / build_console (arm64, win) (push) Waiting to run
Console (.NET) / build_console (x64, linux) (push) Waiting to run
Console (.NET) / build_console (x64, win) (push) Waiting to run
MAUI / Windows Smoketest (push) Waiting to run
MAUI / Android Smoketest (push) Waiting to run
MAUI / iOS Smoketest (push) Waiting to run
MAUI / MacCatalyst Smoketest (push) Waiting to run
WinForms (.NET Framework) / build_desktop (Release, x64) (push) Waiting to run
WinForms (.NET Framework) / build_desktop (Release, x86) (push) Waiting to run
WinUI3 / build-windows (push) Waiting to run
WPF (.NET Framework) / build_desktop (Release, x64) (push) Waiting to run
WPF (.NET Framework) / build_desktop (Release, x86) (push) Waiting to run
ASP.NET Core (with Reporting) - Docker / Microsoft Base - Publish to Docker Hub (push) Waiting to run
ASP.NET Core (with Reporting) - Docker / CentOS Base - Publish to Docker Hub (push) Waiting to run
Blazor (with Reporting) - Docker / Dockerfile Build and Publish (push) Waiting to run
First push
2026-05-21 15:10:03 -04:00

51 lines
1.5 KiB
YAML

name: Console (.NET) - Artifactory Only
on:
workflow_dispatch:
defaults:
run:
shell: pwsh
jobs:
build_console:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Build Console App w/only Artifactory Source
run: |
# 1. Remove all existing package sources
$sourceList = dotnet nuget list source
$sourceNames = @()
foreach ($line in $sourceList) {
if ($line -match '^\s*\d+\.\s+(.*)\s+\[Enabled\]') {
$sourceNames += $matches[1].Trim()
}
}
foreach ($name in $sourceNames) {
dotnet nuget remove source "$name"
Write-Host "Removed $name ..."
}
# 2. Add Artifactory source with credentials from GitHub Secrets
dotnet nuget add source "https://bed-artifactory.bedford.progress.com/artifactory/api/nuget/v3/dt-nuget-virtual-tierpoint/index.json" `
--name "artifactory_virtual" `
--username ${{secrets.ARTIFACTORY_NUGET_USERNAME}} `
--password ${{secrets.ARTIFACTORY_NUGET_PASSWORD}} `
--store-password-in-clear-text
# 3. List sources to verify
dotnet nuget list source
# 4. Build the project
dotnet build "src/Console/MyDocProcApp/MyDocProcApp.csproj"
env:
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}