Fix build
This commit is contained in:
parent
7e6781012e
commit
9e2dbcf015
1
.github/workflows/desktop.yml
vendored
1
.github/workflows/desktop.yml
vendored
@ -3,6 +3,7 @@ name: Build & Release
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
|
- '*'
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build (${{ matrix.os }} - ${{ matrix.arch }})
|
name: Build (${{ matrix.os }} - ${{ matrix.arch }})
|
||||||
|
7
scripts/release.sh
Executable file
7
scripts/release.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash -e
|
||||||
|
|
||||||
|
VERSION=$1
|
||||||
|
cd desktop; npm version $VERSION; cd ..
|
||||||
|
git commit -am $VERSION
|
||||||
|
git tag $VERSION
|
||||||
|
git push && git push --tags
|
Loading…
Reference in New Issue
Block a user