From 23de01496edb1f8173b44045afdc4f33c4cda391 Mon Sep 17 00:00:00 2001 From: Miguel Angel Moreno Date: Mon, 1 Jul 2024 10:38:12 +0200 Subject: [PATCH] Add sample tag --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8017538..3701e56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,7 @@ jobs: script: | const regex = /(alpha|beta)/ const refName = context.ref.replace('refs/tags/', '') + console.log(`Ref name: ${refName}`) const releaseType = (refName.match(regex))[0] console.log(`Release type: ${releaseType}`) return releaseType