Skip to content

Commit 8cdaadb

Browse files
committed
Merge branch 'hotfix/gh-action-fix'
2 parents a9c0559 + 4303678 commit 8cdaadb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: 🧪 Test
2727
run: dotnet test --no-restore --verbosity normal
2828
- name: 🗜 Compress build files # This would actually build your project, using zip for an example artifact
29-
run: zip --junk-paths Paramdigma.Core-${{github.ref}}.zip src/bin/Release/netstandard2.1/*
29+
run: zip --junk-paths ./Paramdigma.Core.zip ./src/bin/Release/netstandard2.1/*
3030

3131
- name: 📘 Create Release
3232
id: create_release
@@ -45,8 +45,8 @@ jobs:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
with:
4747
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
48-
asset_path: ./Paramdigma.Core-${{github.ref}}.zip
49-
asset_name: Paramdigma.Core-${{github.ref}}.zip
48+
asset_path: ./Paramdigma.Core.zip
49+
asset_name: Paramdigma.Core.zip
5050
asset_content_type: application/zip
5151
- name: 📦 Create the package
5252
run: dotnet pack --configuration Release src/Paramdigma.Core.csproj

0 commit comments

Comments
 (0)