Skip to content

Commit e8ea885

Browse files
iscifoniengineering87Ivano ScifoniVforValerioB
authored
Develop (#26)
* Fix FromByteArrayTo method * Update MSTest packages * Branch align from master (#19) * Add library version on props file Add library sign * Align from Develop (#15) * DictionaryHelper - Test WIP * New String Method ToInt32 * method ToInt32 modified with CulureInfo as input value - default is currentculture * Fixed StringTest * Create nuget.config * Update dotnetcore.yml * Update version.json Co-authored-by: VforValerioB <[email protected]> * Update version.json * Update version.json * Update version.json * Update dotnetcore.yml * Update dotnetcore.yml * Update version.json * Update version.json * Update version.json * Update version.json * modificato dotnetcore.yml * V1.0 (#16) * DictionaryHelper - Test WIP * New String Method ToInt32 * method ToInt32 modified with CulureInfo as input value - default is currentculture * Fixed StringTest * Create nuget.config * Update dotnetcore.yml * Update version.json * Set version to '1.0' Co-authored-by: VforValerioB <[email protected]> * Update README.md * Update README.md * Fix FromByteArrayTo method * Update MSTest packages Co-authored-by: Ivano Scifoni <[email protected]> Co-authored-by: VforValerioB <[email protected]> Co-authored-by: engineering87 <[email protected]> * Add DataTable helper * Add ToList in DataTableHelper * Add RemoveDigits | OnlyDigits methods * Develop (#24) (#25) * Fix FromByteArrayTo method * Update MSTest packages * Branch align from master (#19) * Add library version on props file Add library sign * Align from Develop (#15) * DictionaryHelper - Test WIP * New String Method ToInt32 * method ToInt32 modified with CulureInfo as input value - default is currentculture * Fixed StringTest * Create nuget.config * Update dotnetcore.yml * Update version.json Co-authored-by: VforValerioB <[email protected]> * Update version.json * V1.0 (#16) * DictionaryHelper - Test WIP * New String Method ToInt32 * method ToInt32 modified with CulureInfo as input value - default is currentculture * Fixed StringTest * Create nuget.config * Update dotnetcore.yml * Update version.json * Set version to '1.0' Co-authored-by: VforValerioB <[email protected]> * Update README.md * Update README.md * Fix FromByteArrayTo method * Update MSTest packages Co-authored-by: Ivano Scifoni <[email protected]> Co-authored-by: VforValerioB <[email protected]> Co-authored-by: engineering87 <[email protected]> * Add DataTable helper * Add ToList in DataTableHelper * Add RemoveDigits | OnlyDigits methods Co-authored-by: engineering87 <[email protected]> Co-authored-by: Ivano Scifoni <[email protected]> Co-authored-by: VforValerioB <[email protected]> Co-authored-by: engineering87 <[email protected]> Co-authored-by: Ivano Scifoni <[email protected]> Co-authored-by: VforValerioB <[email protected]> * Update README.md * Update wfnetcorev2.yaml Co-authored-by: engineering87 <[email protected]> Co-authored-by: Ivano Scifoni <[email protected]> Co-authored-by: VforValerioB <[email protected]>
1 parent 3a85557 commit e8ea885

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
run: |
5656
for f in ./SharpHelpers/SharpHelpers/bin/Release/*.nupkg
5757
do
58+
echo @$f
5859
curl --silent --show-error --fail -vX PUT -u "iscifoni:${{ secrets.GITHUB_TOKEN }}" -F package=@$f https://nuget.pkg.github.com/shaprcode-it/
5960
if [ $? -eq 0 ]
6061
then

.github/workflows/wfnetcorev2.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: dotnet test ./SharpHelpers/SharpHelpers.sln -c Release --no-build
5656
- name: Pack
5757
if: matrix.os == 'ubuntu-latest'
58-
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source --no-build -p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}-${{ steps.gitversion.outputs.CommitsSinceVersionSourcePadded }} ./SharpHelpers/SharpHelpers.sln
58+
run: dotnet pack -v normal -c Release --no-restore --no-build -p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}-${{ steps.gitversion.outputs.CommitsSinceVersionSourcePadded }} ./SharpHelpers/SharpHelpers.sln
5959
- name: Upload Artifact
6060
if: matrix.os == 'ubuntu-latest'
6161
uses: actions/upload-artifact@v2
@@ -73,9 +73,10 @@ jobs:
7373
name: nupkg
7474
- name: Push to GitHub Feed
7575
run: |
76-
for f in ./SharpHelpers/SharpHelpers/bin/Release/*.nupkg
76+
for f in ./nupkg/*.nupkg
7777
do
78-
curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
78+
echo $f
79+
curl --silent --show-error --fail -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
7980
done
8081
deploy:
8182
needs: build

0 commit comments

Comments
 (0)