Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/publish_nugets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
runs-on: ubuntu-latest
env:
CLIENT_SECRET: ${{secrets.CLIENT_SECRET}}
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
NUGET_KEY: ${{ secrets.NUGET_KEY }}

Expand All @@ -30,30 +29,16 @@ jobs:
- name: Install VirtoCommerce.GlobalTool
run: dotnet tool install --global VirtoCommerce.GlobalTool --version 2.1.0-alpha.17

- name: Install dotnet-sonarscanner
run: dotnet tool install --global dotnet-sonarscanner

- name: Get Image Version
uses: VirtoCommerce/vc-github-actions/get-image-version@master
id: image

- name: SonarCloud Begin
uses: VirtoCommerce/vc-github-actions/sonar-scanner-begin@master

- name: Build
run: vc-build Compile

- name: Unit Tests
run: vc-build Test -skip

- name: SonarCloud End
uses: VirtoCommerce/vc-github-actions/sonar-scanner-end@master

- name: Quality Gate
uses: VirtoCommerce/vc-github-actions/sonar-quality-gate@master
with:
login: ${{secrets.SONAR_TOKEN}}

- name: Packaging
run: vc-build Compress -skip Clean+Restore+Compile+Test

Expand Down