From 2d9b58bd48762ca089a537e68cbae38c6b36426f Mon Sep 17 00:00:00 2001 From: saicharan0112 Date: Sat, 12 Nov 2022 13:42:22 +0530 Subject: final changes to the release flow --- .github/workflows/release_ubuntu.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to '.github/workflows/release_ubuntu.yml') diff --git a/.github/workflows/release_ubuntu.yml b/.github/workflows/release_ubuntu.yml index 7ff3f33e..1ed41a21 100644 --- a/.github/workflows/release_ubuntu.yml +++ b/.github/workflows/release_ubuntu.yml @@ -90,7 +90,7 @@ jobs: - name: Zip the eSim_release folder run: | cd /home/runner/work/ - zip -r eSim_release.zip eSim_release/ + zip -r eSim-$VERSION.zip eSim_release/ # Create a release and upload artifact @@ -101,7 +101,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref_name }} - release_name: ${{ github.ref_name }} + release_name: eSim-$VERSION draft: false prerelease: false @@ -112,8 +112,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: 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 - asset_path: /home/runner/work/eSim_release.zip - asset_name: eSim_release.zip - asset_content_type: application/zip - - + asset_path: /home/runner/work/eSim-$VERSION.zip + asset_name: eSim-$VERSION.zip + asset_content_type: application/zip \ No newline at end of file -- cgit