diff options
author | saicharan0112 | 2022-11-12 11:08:50 +0530 |
---|---|---|
committer | saicharan0112 | 2022-11-12 11:08:50 +0530 |
commit | 67ceb521cdfc1dbb68a7f92ac363c1a32bfe66e6 (patch) | |
tree | bdac58443b3c9f1d93a1b44c126f77d849cd34e0 | |
parent | 3aaa8b7b53c05434afae7ef87d2a1f1394532463 (diff) | |
download | eSim-67ceb521cdfc1dbb68a7f92ac363c1a32bfe66e6.tar.gz eSim-67ceb521cdfc1dbb68a7f92ac363c1a32bfe66e6.tar.bz2 eSim-67ceb521cdfc1dbb68a7f92ac363c1a32bfe66e6.zip |
version env variable fix again
-rw-r--r-- | .github/workflows/release_ubuntu.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release_ubuntu.yml b/.github/workflows/release_ubuntu.yml index ceeea635..e476ffad 100644 --- a/.github/workflows/release_ubuntu.yml +++ b/.github/workflows/release_ubuntu.yml @@ -84,8 +84,8 @@ jobs: # extract the number from the tag to pull the relevant manual from the website - name: Copy eSim manual which is available at https://static.fossee.in/esim/manuals/ run: | - version=echo ${{github.ref_name}} | tr -d "v" -f 2 - wget https://static.fossee.in/esim/manuals/eSim_Manual_$version.pdf + echo "version=$(echo ${{github.ref_name}} | tr -d "v" -f 2)" >> $GITHUB_ENV + wget https://static.fossee.in/esim/manuals/eSim_Manual_${{ env.version }}.pdf - name: Zip the eSim_release folder run: | |