chore: fixed docs sync script by fixing a path (#522) #330
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: Build and Release "Preview" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
uses: snyk/vscode-extension/.github/workflows/ci.yaml@main | |
release-preview: | |
name: Release Preview | |
runs-on: ubuntu-latest | |
environment: Preview | |
needs: build | |
steps: | |
- name: Setup VSCE | |
run: npm install -g vsce@latest | |
- name: Fetch sources | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm ci | |
# Naming convention for the preview version means we can only release one preview per hour | |
- name: Patch to preview version | |
run: npm run patch-preview | |
env: | |
SNYK_VSCE_AMPLITUDE_EXPERIMENT_API_KEY: ${{ secrets.SNYK_VSCE_AMPLITUDE_EXPERIMENT_API_KEY }} | |
SNYK_VSCE_SENTRY_DSN_KEY: ${{ secrets.SNYK_VSCE_SENTRY_DSN_KEY }} | |
- name: Publish to Marketplace | |
run: vsce publish -p ${{ secrets.MARKETPLACE_TOKEN }} |