From 6f43d8e96ee5fe66f1162b328e1a22cd91b1b91f Mon Sep 17 00:00:00 2001 From: Christoph Date: Wed, 8 Jan 2025 06:17:48 +0000 Subject: [PATCH] Update .gitea/workflows/build_and_puplish.yml --- .gitea/workflows/build_and_puplish.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build_and_puplish.yml b/.gitea/workflows/build_and_puplish.yml index 2d16664..3aa898a 100644 --- a/.gitea/workflows/build_and_puplish.yml +++ b/.gitea/workflows/build_and_puplish.yml @@ -1,10 +1,15 @@ on: push: - branches: - - main + tags: + - '[0-9]+.[0-9]+.[0-9]+' jobs: build_and_publish: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 \ No newline at end of file + uses: actions/checkout@v2 + - name: Install NPM + run: npm i + - name: Install VSCE + run: npm -g i @vscode/vsce + \ No newline at end of file