Skip to content

Commit 9fc841a

Browse files
author
Zack
committed
LocalStackSample V1.0.0 Initial with version number
1 parent 7edaa19 commit 9fc841a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/workflow.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
- name: Build project
1717
run: dotnet build --configuration Release
1818
- name: Zip Folder
19-
run: zip -r Archive.zip ./API/bin/Release/netcoreapp3.1
19+
run: zip -r Build.zip ./API/bin/Release/netcoreapp3.1
2020
- name: Create Release
2121
id: create_release
2222
uses: actions/create-release@v1
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:
26-
tag_name: ${{ github.ref }}
27-
release_name: Release ${{ github.ref }}
26+
tag_name: Localstack v1.0.0
27+
release_name: Release v1.0.0
2828
draft: false
2929
prerelease: false
3030
- name: Upload Release Asset
@@ -34,6 +34,6 @@ jobs:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
with:
3636
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
37-
asset_path: ./Archive.zip
38-
asset_name: Archive.zip
37+
asset_path: ./Build.zip
38+
asset_name: Build.zip
3939
asset_content_type: application/zip

0 commit comments

Comments
 (0)