Update VSC core and additional extensions #29
Workflow file for this run
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: "Deploy" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm prepare-deploy | |
# deployment per branch | |
- uses: superactions/deploy-branch-action@action | |
if: ${{ github.ref != 'refs/heads/main' }} | |
with: | |
directory: packages/vscode-host/dist | |
# --- production deployments (only on main) | |
# deploy app | |
- uses: ngduc/vercel-deploy-action@master | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
vercel-cli: vercel | |
vercel-project-id: ${{ secrets.VERCEL_APP_PROJECT_ID}} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID}} | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
scope: ${{ secrets.VERCEL_ORG_ID }} | |
working-directory: packages/vscode-host/dist | |
vercel-args: "--prod" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
# deploy entrypoint (no preview) | |
- uses: ngduc/vercel-deploy-action@master | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
vercel-cli: vercel | |
vercel-project-id: ${{ secrets.VERCEL_ENTRYPOINT_PROJECT_ID}} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID}} | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
scope: ${{ secrets.VERCEL_ORG_ID }} | |
working-directory: packages/entrypoint/dist | |
vercel-args: "--prod" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true |