From 43b22fd9db805e63db0f17c10349274394346861 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Wed, 13 Dec 2023 00:37:51 +0100 Subject: [PATCH] test tage name --- .github/workflows/webapp-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/webapp-build.yml b/.github/workflows/webapp-build.yml index c49ebe012..4b87a5afe 100644 --- a/.github/workflows/webapp-build.yml +++ b/.github/workflows/webapp-build.yml @@ -3,11 +3,14 @@ name: Build WebApp on: push: tags: + # Only run on tags with the format v3.x.x or v3.x.x-someextra - 'v3.[0-9]+.[0-9]+' + - 'v3.[0-9]+.[0-9]+-[A-Za-z0-9.-]*' env: - WEBAPP_PACKAGE_NAME: webapp.tar.gz + WEBAPP_PACKAGE_NAME: webapp-${{ github.ref_name }}.tar.gz WEBAPP_ROOT_PATH: ./src/webapp/ + TAG_NAME: ${{ github.ref_name }} jobs: build: