mirror of
https://github.com/nikdoof/openlens-extensions.git
synced 2026-01-31 07:28:15 +00:00
Add basic build workflow
This commit is contained in:
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
name: build-extensions
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
build-extensions:
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
cache: 'npm'
|
||||||
|
- name: Run 'make build'
|
||||||
|
run: make build
|
||||||
|
shell: bash
|
||||||
|
- name: Upload plugins
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: dist-without-markdown
|
||||||
|
path: |
|
||||||
|
dist/*
|
||||||
Reference in New Issue
Block a user