Skip to content

Commit

Permalink
Update build.yml (#437)
Browse files Browse the repository at this point in the history
* Update build.yml

trying using the electron-builder as gitactions aren't deploying the packages anymore.

* Update build.yml

* Update build.yml

* Update package.json

* Update package.json

* Update build.yml
  • Loading branch information
IsmaelMartinez committed Jun 26, 2021
1 parent e9c1795 commit 315ca04
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:deb
run: yarn dist:linux:deb -- --publish always

rpm:
runs-on: ubuntu-latest
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:rpm
run: yarn dist:linux:rpm -- --publish always

appimage:
runs-on: ubuntu-latest
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:appimage
run: yarn dist:linux:appimage -- --publish always

targz:
runs-on: ubuntu-latest
Expand All @@ -84,7 +84,7 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:targz
run: yarn dist:linux:targz -- --publish always

snap:
runs-on: ubuntu-latest
Expand All @@ -108,7 +108,7 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:snap
run: yarn dist:linux:snap -- --publish always

snap-armv7l:
runs-on: ubuntu-latest
Expand All @@ -132,4 +132,4 @@ jobs:

- name: Release
if: contains(github.ref, 'develop')
run: yarn dist:linux:snap:armv7l
run: yarn dist:linux:snap:armv7l -- --publish always
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux",
"dist:linux:targz": "electron-builder --x64 --armv7l --arm64 -l tar.gz ",
"dist:linux:targz": "electron-builder --x64 --armv7l --arm64 -l tar.gz",
"dist:linux:deb": "electron-builder --x64 --armv7l --arm64 -l deb",
"dist:linux:rpm": "electron-builder --x64 --armv7l --arm64 -l rpm",
"dist:linux:appimage": "electron-builder --x64 --armv7l --arm64 -l AppImage",
"dist:linux:snap": "electron-builder -l snap -p always",
"dist:linux:snap:armv7l": "electron-builder --x64 --armv7l -l snap -p always",
"dist:linux:snap": "electron-builder -l snap",
"dist:linux:snap:armv7l": "electron-builder --x64 --armv7l -l snap",
"release": "electron-builder"
},
"dependencies": {
Expand Down

0 comments on commit 315ca04

Please sign in to comment.