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