2024-12-31 22:53:56 +01:00
|
|
|
name: Build extension
|
2024-12-31 23:02:19 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2024-12-31 22:53:56 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Instal VSCE
|
|
|
|
run: npm install -g vsce
|
|
|
|
- name: Build
|
|
|
|
run: vsce package -o mapcomplete.vsix
|
|
|
|
- name: Upload artifact
|
2024-12-31 22:56:08 +01:00
|
|
|
uses: actions/upload-artifact@v4
|
2024-12-31 22:53:56 +01:00
|
|
|
with:
|
|
|
|
name: mapcomplete
|
|
|
|
path: mapcomplete.vsix
|