Skip to content

Commit

Permalink
ci: Remove unneeded NuGet setup (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored Jan 6, 2025
1 parent 7029415 commit 27ce78b
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/deploy-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
versionSpec: "5.x"
preferLatestVersion: true

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libxml2-utils

Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
if [[ "${{ inputs.environment }}" == "nuget.org" ]]; then
echo "pkg_url=https://www.nuget.org/packages/${PACKAGE_NAME}/${{ steps.version_info.outputs.version }}" >> $GITHUB_OUTPUT
else
echo "pkg_url=https://github.com/${{ github.repository }}/packages/nuget/${PACKAGE_NAME}/${{ steps.version_info.outputs.version }}" >> $GITHUB_OUTPUT
echo "pkg_url=https://github.com/${{ github.repository }}/pkgs/nuget/${PACKAGE_NAME}" >> $GITHUB_OUTPUT
fi
- name: Build library
Expand Down Expand Up @@ -149,13 +149,6 @@ jobs:
dotnet-version: "9.x"
dotnet-quality: "ga"

- name: Setup NuGet
uses: nuget/setup-nuget@v2
with:
nuget-api-key: ${{ secrets.NUGET_TOKEN }}
nuget-version: '6.x'


- name: Download package
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 27ce78b

Please sign in to comment.