diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 0dc5d43..aed9a9c 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -23,3 +23,8 @@ jobs:
run: dotnet pack --configuration Release CoreZipCode.sln --include-symbols -p:PackageVersion=${{github.ref_name}} -v normal
- name: Publish the package to GPR
run: dotnet nuget push CoreZipCode/bin/Release/CoreZipCode.${{github.ref_name}}.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
+ - name: Upload a Build Artifact
+ uses: actions/upload-artifact@v3.1.0
+ with:
+ name: CoreZipCode.${{github.ref_name}}.nupkg
+ path: CoreZipCode/bin/Release/CoreZipCode.${{github.ref_name}}.nupkg
\ No newline at end of file
diff --git a/CoreZipCode/CoreZipCode.csproj b/CoreZipCode/CoreZipCode.csproj
index 2c71a75..0295b69 100644
--- a/CoreZipCode/CoreZipCode.csproj
+++ b/CoreZipCode/CoreZipCode.csproj
@@ -5,7 +5,7 @@