You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Release New NuGet Package
on:
workflow_dispatch:
inputs:
nugetPkgProjectName:
description: 'Enter your NuGet Package Project Name:'
required: true
type: string
jobs:
begin:
runs-on: martin-laptop
steps:
- uses: actions/checkout@v3
with:
sparse-checkout: |
Martin Nuget Work
- name: Run nuget pack with nuget actions
uses: [NuGet/[email protected]](mailto:NuGet/[email protected])
with:
nuget-version: '5.x'
- run: |
cd "Martin Nuget Work"
nuget pack template.nuspec -Version 2.2.2 -Properties id=MypackageName.fpga
i get this error:
Run [NuGet/[email protected]](mailto:NuGet/[email protected])
with:
nuget-version: 5.x
env:
NEW_VERSION: 0.0.0
Error: unable to get local issuer certificate
After some research, I see solutions saying I need to set an env var pointing to a .pem file:
but on my machine where I am running my github actions runner, i'm not sure where to find this .pem file. and is there any way to solve this issue without having to manually set an env var?**
The text was updated successfully, but these errors were encountered:
**Hello, I am trying to write a github actions workflow that will run a
nuget pack
andnuget push
command. I'm trying to use the official nuget github actions workflow:https://github.com/marketplace/actions/setup-nuget-exe-for-use-with-actions
but when I run my workflow:
i get this error:
After some research, I see solutions saying I need to set an env var pointing to a .pem file:
but on my machine where I am running my github actions runner, i'm not sure where to find this .pem file. and is there any way to solve this issue without having to manually set an env var?**
The text was updated successfully, but these errors were encountered: