mirror of
https://github.com/antokeinanen/obsidian-advanced-merger.git
synced 2026-07-22 07:40:24 +00:00
create github action to build and deploy
This commit is contained in:
parent
6f14153862
commit
40efd136f0
1 changed files with 15 additions and 0 deletions
15
.github/workflows/deploy.yml
vendored
Normal file
15
.github/workflows/deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: 19
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "release.tar.gz,main.js,manifest.json"
|
||||
Loading…
Reference in a new issue