From 4e396cfc37aa822cc59bbe75a14a469550b049f7 Mon Sep 17 00:00:00 2001 From: saicharan0112 Date: Sat, 12 Nov 2022 10:59:28 +0530 Subject: tag regex --- .github/workflows/release_ubuntu.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_ubuntu.yml b/.github/workflows/release_ubuntu.yml index 05e6370d..107935f4 100644 --- a/.github/workflows/release_ubuntu.yml +++ b/.github/workflows/release_ubuntu.yml @@ -3,7 +3,7 @@ name: Auto release of eSim for Ubuntu OS on: push: tags: - - 'eSim-*' # Push events to matching v*, i.e. eSim-2.2, eSim-2.3 etc + - 'v*' # Push events to matching v*, i.e. v2.2, v2.3 etc workflow_dispatch: @@ -84,7 +84,7 @@ 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 "-" -f 2 + version=echo ${{github.ref_name}} | tr -d "v" -f 2 wget https://static.fossee.in/esim/manuals/eSim_Manual_${{version}}.pdf - name: Zip the eSim_release folder -- cgit