Skip to content

Commit

Permalink
fixed symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Mar 23, 2020
1 parent 7300016 commit e933de4
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions .github/workflows/tags_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,4 @@ jobs:
- name: pack Daemon
run: dotnet pack src/Daemon/NetDaemon.Daemon/NetDaemon.Daemon.csproj --configuration Release -p:PackageVersion=${GIT_TAG_NAME}-alpha
- name: push to nuget
run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json

# uses: rohith/publish-nuget@v2
# with:
# PROJECT_FILE_PATH: src/DaemonRunner/DaemonRunner/DaemonRunner.csproj # Relative to repository root
# VERSION_STATIC: ${GIT_TAG_NAME}-alpha
# NUGET_KEY: ${{secrets.NUGET_API_KEY}} # nuget.org API key
# TAG_COMMIT: false # Flag to enable / disalge git tagging
# VERSION_FILE_PATH: Directory.Build.props # Filepath with version info, relative to repository root. Defaults to project file
# VERSION_REGEX: <Version>(.*)<\/Version> # Regex pattern to extract version info in a capturing group
# TAG_FORMAT: v* # Format of the git tag, [*] gets replaced with version
# PACKAGE_NAME: NuGet package name, required when it's different from project name. Defaults to project name
# - name: Build code
# run: dotnet build
# - name: Test code
# run: dotnet test -v minimal /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=${{github.workspace}}/codecover/lcov.info

# - name: Publish coverage report to coveralls.io
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# path-to-lcov: ${{github.workspace}}/codecover/lcov.info
run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --no-symbols true

0 comments on commit e933de4

Please sign in to comment.