Skip to content

Commit

Permalink
Merge pull request #31 from iBrotNano/feature/#8
Browse files Browse the repository at this point in the history
Feature/#8
  • Loading branch information
iBrotNano committed Mar 14, 2023
2 parents 9743d16 + f4534f1 commit 0dbc8fb
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,17 @@ jobs:
- name: Upload Nuget
uses: actions/upload-artifact@v3
with:
name: projectfiles
path: /home/runner/work/TestEnvironment/TestEnvironment/target/nugets/$(Configuration)/*
name: NuGet
path: /home/runner/work/TestEnvironment/TestEnvironment/target/nugets/Release/*
- name: Upload Docs
uses: actions/upload-artifact@v3
with:
name: Docs
path: /home/runner/work/TestEnvironment/TestEnvironment/*.md
- name: Publish To Github NuGet Repo
run: |
dotnet nuget add source --username iBrotNano --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/iBrotNano/index.json"
dotnet nuget push "target/nugets/Release/MarcelMelzig.TestEnvironment.$PACKAGE_VERSION.nupkg" --source "github"
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')

0 comments on commit 0dbc8fb

Please sign in to comment.