Skip to content

Commit e4c9c2f

Browse files
Fix workflow.
1 parent cc72b8b commit e4c9c2f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626

2727
- name: Publish App
2828
# We publish to a local 'publish' folder
29-
run: dotnet publish OutSystems.YAEmailValidator/OutSystems.YAEmailValidator.csproj -c Release -r linux-x64 --self-contained false -o ./publish
29+
run: dotnet publish OutSystems.NetChecksumUtils/OutSystems.NetChecksumUtils.csproj -c Release -r linux-x64 --self-contained false -o ./publish
3030

3131
- name: Create Versioned Zip
32-
# This creates YAEmailValidator_v1.0.0.zip (or whatever your tag is)
32+
# This creates NetChecksumUtils_v1.0.0.zip (or whatever your tag is)
3333
run: |
3434
cd ./publish
35-
zip -r ../YAEmailValidator_${{ steps.get_version.outputs.VERSION }}.zip .
35+
zip -r ../NetChecksumUtils_${{ steps.get_version.outputs.VERSION }}.zip .
3636
cd ..
3737
3838
- name: Create GitHub Release
3939
uses: softprops/action-gh-release@v2
4040
with:
41-
files: YAEmailValidator_${{ steps.get_version.outputs.VERSION }}.zip
41+
files: NetChecksumUtils_${{ steps.get_version.outputs.VERSION }}.zip
4242
name: Release ${{ steps.get_version.outputs.VERSION }}
4343
draft: false
4444
prerelease: false

0 commit comments

Comments
 (0)