Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions build/lambda-functions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ inputs:
publishPathFilter:
description: The path of the files to publish, as a filter to be tested to determine the files to add in the artifact
required: true
dotnetVersion:
description: The .NET version to use
default: '8.0.x'
verbosity:
description: The verbosity of the scripts
default: quiet
Expand All @@ -20,6 +23,10 @@ inputs:
runs:
using: composite
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnetVersion }}
- name: Add GitHub Packages as NuGet feed
shell: pwsh
run: dotnet nuget add source --username ${{ github.repository_owner }} --password ${{ github.token }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
Expand Down