diff --git a/.github/continuous-release.yaml b/.github/continuous-release.yaml new file mode 100644 index 0000000..41359e8 --- /dev/null +++ b/.github/continuous-release.yaml @@ -0,0 +1,25 @@ +name: Publish Every Commit +on: + push: + branches: + - main + pull_request: + types: + - opened + - synchronize + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - run: corepack enable + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "pnpm" + + - run: pnpx pkg-pr-new publish diff --git a/package.json b/package.json index 6c1d5c1..178b3e1 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,10 @@ "type": "git", "url": "https://github.com/tenzir/vscode-tql" }, + "files": [ + "syntaxes/*.json", + "language-configuration.json" + ], "engines": { "vscode": "^1.84.0" },