forked from adamviola/parquet-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (31 loc) · 700 Bytes
/
Copy pathmain.yml
File metadata and controls
32 lines (31 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
workflow_dispatch:
jobs:
package:
name: Package Extension
runs-on: ubuntu-latest
steps:
- name: Setup Node.js environment
uses: actions/setup-node@v3.7.0
with:
node-version: 20.5.1
- name: Checkout repo
uses: actions/checkout@v3.5.3
- name: Build extension
run: |
npm install
npm install --global @vscode/vsce
./package.sh
- name: Upload extension
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
path: ./dist/*
- name: Print out files in out/
run: du -ah ./out/