summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsaicharan01122022-11-12 13:42:22 +0530
committersaicharan01122022-11-12 13:42:22 +0530
commit2d9b58bd48762ca089a537e68cbae38c6b36426f (patch)
tree54be980f675e2dab7e5e27f3ee06a059bc0185e4 /.github
parent79978dfb5414107953bdcc6717d9c5bb8df38ac5 (diff)
downloadeSim-2d9b58bd48762ca089a537e68cbae38c6b36426f.tar.gz
eSim-2d9b58bd48762ca089a537e68cbae38c6b36426f.tar.bz2
eSim-2d9b58bd48762ca089a537e68cbae38c6b36426f.zip
final changes to the release flow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release_ubuntu.yml12
1 files changed, 5 insertions, 7 deletions
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