Skip to content

Commit

Permalink
Fix nuget workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Payne committed Apr 6, 2021
1 parent 8944102 commit 79e93a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ jobs:
- name: Add Github Packages source
run: nuget sources add -name github -source https://nuget.pkg.github.com/pepperdash/index.json -username Pepperdash -password ${{ secrets.GITHUB_TOKEN }}
- name: Create nuget package
run: nuget pack "./epi-display-samsung-mdc.nuspec" -version ${{ env.VERSION }}
run: nuget pack "/epi-display-samsung-mdc.nuspec" -version ${{ env.VERSION }}
- name: Publish nuget package to Github registry
run: nuget push **/*.nupkg -source github
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
# solution path doesn't need slashes unless there it is multiple folders deep
# solution name does not include extension. .sln is assumed
SOLUTION_PATH: epi-display-samsung-mdc
SOLUTION_PATH: epi-display-samsung-mdc\
SOLUTION_FILE: epi-display-samsung-mdc
# Do not edit this, we're just creating it here
VERSION: 0.0.0-buildtype-buildnumber
Expand Down Expand Up @@ -118,6 +118,6 @@ jobs:
- name: Add Github Packages source
run: nuget sources add -name github -source https://nuget.pkg.github.com/pepperdash/index.json -username Pepperdash -password ${{ secrets.GITHUB_TOKEN }}
- name: Create nuget package
run: nuget pack "./epi-display-samsung-mdc.nuspec" -version ${{ env.VERSION }}
run: nuget pack "/epi-display-samsung-mdc.nuspec" -version ${{ env.VERSION }}
- name: Publish nuget package to Github registry
run: nuget push **/*.nupkg -source github

0 comments on commit 79e93a1

Please sign in to comment.