mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Workflows fix + don't default to non-asar build
This commit is contained in:
parent
847cb9c2c8
commit
dfc6995064
2 changed files with 0 additions and 53 deletions
52
.github/workflows/release.yml
vendored
52
.github/workflows/release.yml
vendored
|
@ -1,52 +0,0 @@
|
|||
name: Release
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
|
||||
jobs:
|
||||
|
||||
publish_on_linux:
|
||||
runs-on: ubuntu-latest
|
||||
permissions: write-all
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: 14
|
||||
- name: install dependencies
|
||||
run: npm install
|
||||
- name: publish
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.LUV }}
|
||||
run: npm run publish
|
||||
|
||||
publish_on_mac:
|
||||
runs-on: macos-latest
|
||||
permissions: write-all
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: 14
|
||||
- name: install dependencies
|
||||
run: npm install
|
||||
- name: publish
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.LUV }}
|
||||
run: npm run publish
|
||||
|
||||
publish_on_win:
|
||||
runs-on: windows-latest
|
||||
permissions: write-all
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: 14
|
||||
- name: install dependencies
|
||||
run: npm install
|
||||
- name: publish
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.LUV }}
|
||||
run: npm run publish
|
|
@ -37,7 +37,6 @@
|
|||
"build": {
|
||||
"appId": "com.smartfridge.armcord",
|
||||
"productName": "ArmCord",
|
||||
"asar": "false",
|
||||
"mac": {
|
||||
"category": "Internet"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue