diff options
-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: | |