Merge pull request #549 from malloydata/0.0.215 #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Pre-Release Extension | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
uses: './.github/workflows/test.yaml' | |
vsix-release: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- name: Publish | |
run: | | |
set -euxo pipefail | |
npm ci --loglevel error | |
npm run publish-extensions pre-release | |
env: | |
CI: true | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
OVSX_TOKEN: ${{ secrets.OVSX_TOKEN }} |