diff options
author | saicharan0112 | 2022-11-12 11:19:44 +0530 |
---|---|---|
committer | saicharan0112 | 2022-11-12 11:19:44 +0530 |
commit | 3509c41478b989e9571cdc06494060c217817d0e (patch) | |
tree | 477ee670ba0f1ae13167fe36136514ab10da6fbe /.github | |
parent | 15018d0bde45356f9303522d5d706e4948910e48 (diff) | |
download | eSim-3509c41478b989e9571cdc06494060c217817d0e.tar.gz eSim-3509c41478b989e9571cdc06494060c217817d0e.tar.bz2 eSim-3509c41478b989e9571cdc06494060c217817d0e.zip |
cut command fix
Diffstat (limited to '.github')
-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 edfd4993..480efba0 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: | - echo "version=$(echo ${{github.ref_name}} | cut -d 'v' -f 2)" >> $GITHUB_ENV - wget https://static.fossee.in/esim/manuals/eSim_Manual_${{ env.version }}.pdf + echo "VERSION=$(echo ${{github.ref_name}} | cut -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: | |