Skip to content

Commit

Permalink
fix build-publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterAustinMoore committed Dec 21, 2023
1 parent 637639f commit 3d46432
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
version: ${{ steps.set_proj_version.outputs.PKG_VERSION }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.204
- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
[xml]$nuspec = Get-Content Socrata\Socrata.csproj
$version=$nuspec.project.propertygroup.version
Write-Output "::set-output name=PKG_VERSION::$version"
echo "PKG_VERSION=$version" >> $GITHUB_OUTPUT
env:
SODA_USERNAME: "${{ secrets.SODA_USERNAME }}"
SODA_PASSWORD: "${{ secrets.SODA_PASSWORD }}"
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Download Package artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: nupkg

Expand All @@ -60,7 +60,7 @@ jobs:
nuget-version: latest

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.204

Expand Down

0 comments on commit 3d46432

Please sign in to comment.