Skip to content

Commit

Permalink
Tasks reordered
Browse files Browse the repository at this point in the history
  • Loading branch information
ASolomatin committed Sep 6, 2023
1 parent b41fab1 commit 43f5f12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ jobs:
ls */*.pdb | xargs -I _FILE_ bash -c "cp _FILE_ \$(echo _FILE_ | sed 's/\//_/g')"
ls */*.xml | xargs -I _FILE_ bash -c "cp _FILE_ \$(echo _FILE_ | sed 's/\//_/g')"
- name: nuget push
run: dotnet nuget push "${NUPKG_PATH}" --api-key "${NUGET_KEY}" --source https://api.nuget.org/v3/index.json
env:
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}
NUPKG_PATH: ${{ env.ARTIFACT_NUPKG_PATHNAME }}

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -49,3 +43,9 @@ jobs:
src/TDigestNet/bin/Release/*.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: nuget push
run: dotnet nuget push "${NUPKG_PATH}" --api-key "${NUGET_KEY}" --source https://api.nuget.org/v3/index.json
env:
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}
NUPKG_PATH: ${{ env.ARTIFACT_NUPKG_PATHNAME }}

0 comments on commit 43f5f12

Please sign in to comment.