Skip to content

Commit

Permalink
test release 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZEXSM committed Oct 28, 2023
1 parent bfa115f commit 569c8a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c ${{ vars.CONFIGURATION }} --no-restore
run: dotnet build -c ${{ vars.CONFIGURATION }}
- name: Test
run: dotnet test -c ${{ vars.CONFIGURATION }} --no-build
- name: Coveralls
Expand Down Expand Up @@ -62,6 +60,8 @@ jobs:
run: dotnet pack -c ${{ vars.CONFIGURATION }} -p:PackageVersion=${{ steps.create_tag.outputs.release_package_version }}
- name: Release
run: |
ls -a
cd src/OData.QueryBuilder
ls -a
dotnet nuget push ./src/OData.QueryBuilder/bin/Release/OData.QueryBuilder.${{ steps.create_tag.outputs.release_package_version }}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s ${{ vars.NUGET_SOURCE }}
git tag v${{ steps.create_tag.outputs.release_package_version }}
Expand Down

0 comments on commit 569c8a9

Please sign in to comment.