azure devops webhook test
All checks were successful
Develop Build / build (push) Successful in 44s

This commit is contained in:
Roland Fieger
2025-10-30 08:59:43 +01:00
parent fd27eb85ca
commit 06ff9c6447
9 changed files with 28 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
name: Triggered by Azure DevOps
on:
repository_dispatch:
types: [azure-devops-commit]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Process Azure DevOps event
run: |
echo "Triggered by Azure DevOps commit"
echo "Event: ${{ github.event.client_payload }}"

View File

@@ -23,6 +23,8 @@ jobs:
with:
fetch-depth: 0
- name: Add Nuget Credentials
# run: dotnet nuget update source gitea --username sxhundred --password ${{ secrets.READ_NUGET_PAT }} --store-password-in-clear-text --configfile nuget.config
run: dotnet nuget update source gitea --username ${{ secrets.READ_NUGET_USER }} --password ${{ secrets.READ_NUGET_PAT }} --store-password-in-clear-text --configfile nuget.config