diff --git a/.github/workflows/push-to-main.yml b/.github/workflows/push-to-main.yml new file mode 100644 index 0000000..aa6b4e3 --- /dev/null +++ b/.github/workflows/push-to-main.yml @@ -0,0 +1,38 @@ +name: Build and Publish + +on: + push: + branches: + - main + +jobs: + build-and-deploy: + permissions: + contents: write + name: Build and Deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: "Automated Version Bump" + uses: "phips28/gh-action-bump-version@master" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + version-type: "patch" + + - name: Install dependencies + run: npm install + + - name: Build + run: npm run compile-web + + - name: Publish to Visual Studio Marketplace + uses: HaaLeo/publish-vscode-extension@v1 + with: + pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} + registryUrl: https://marketplace.visualstudio.com