Skip to content

Merge pull request #75 from pullflow/EN-311 #13

Merge pull request #75 from pullflow/EN-311

Merge pull request #75 from pullflow/EN-311 #13

Workflow file for this run

name: Publish to VS Code Marketplace
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Node version
uses: actions/setup-node@v1
with:
node-version: 16
- uses: actions/checkout@v2
- name: Make envfile
uses: SpicyPizza/[email protected]
with:
envkey_SESSIONS_SECRET_KEY: ${{ secrets.SESSION_SECRET_KEY }}
envkey_CLIENT_IDENTIFIER: com.pullflow.vscode
envkey_PULLFLOW_APP_URL: https://app.pullflow.com
envkey_PULLFLOW_TELEMETRY_URL: https://collector.pullflow.cloud
- name: Build, compile and test
run: |
yarn
yarn compile
yarn lint
yarn test
- name: publish
run: |
yarn global add vsce
vsce publish -p ${{ secrets.VSCE_ACCESS_TOKEN_TEMPORARY }}