Update .gitea/workflows/publish-nuget.yml

This commit is contained in:
2025-12-31 12:42:23 +00:00
parent 75179f6255
commit 881c8def09

View File

@@ -8,17 +8,17 @@ on:
- 'v*' - 'v*'
workflow_dispatch: workflow_dispatch:
# Optional: you can add inputs here to prompt for values when manually triggering # Optional: you can add inputs here to prompt for values when manually triggering
inputs: # inputs:
notes: # notes:
description: 'Notes' # description: 'Notes'
required: true # required: true
default: 'Just CI Build' # default: 'Just CI Build'
jobs: jobs:
checkout-code: checkout-code:
runs-on: ubuntu-latest # Has Git + Node.js for checkout runs-on: ubuntu-latest # Has Git + Node.js for checkout
steps: steps:
- name: Checkout repository for ${{ github.event.inputs.notes }} - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
fetch-depth: 0 # Needed for version detection if used fetch-depth: 0 # Needed for version detection if used