From c6e57eae517214585e8d98a101d087c7708be21d Mon Sep 17 00:00:00 2001 From: Christoph Date: Wed, 8 Jan 2025 06:26:31 +0000 Subject: [PATCH] Update .gitea/workflows/build_and_puplish.yml --- .gitea/workflows/build_and_puplish.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitea/workflows/build_and_puplish.yml b/.gitea/workflows/build_and_puplish.yml index 3aa898a..c10b46f 100644 --- a/.gitea/workflows/build_and_puplish.yml +++ b/.gitea/workflows/build_and_puplish.yml @@ -8,8 +8,19 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 + - name: Install NodeJS + uses: actions/setup-node@v4 + with: + node-version: 20 - name: Install NPM run: npm i - name: Install VSCE run: npm -g i @vscode/vsce + - name: Build Package Files + run: npm run package + - name: Publish to Visual Studio Marketplace + uses: HaaLeo/publish-vscode-extension@v1 + with: + pat: ${{ secrets.VSCODE_MARKETPALCE }} + registryUrl: https://marketplace.visualstudio.com \ No newline at end of file