Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.
/ Linux Public archive

Commit ddf2025

Browse files
committed
💩 It just decided to break by itself
1 parent 30cfac7 commit ddf2025

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
yarn run dist
2525
- name: Building
2626
run: yarn run build
27+
env:
28+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2729
- name: Publish
2830
run: |
2931
curl -T ./dist/app/dist/${{ steps.info.outputs.productName }}.deb -udoomlerd:${{ secrets.BT_KEY }} "https://api.bintray.com/content/premid/debian-ubuntu/premid/${{ steps.info.outputs.version }}-${{ steps.info.outputs.timestamp }}/pool/nightly/p/premid_${{ steps.info.outputs.version }}-${{ steps.info.outputs.timestamp }}_amd64.deb;deb_distribution=nightly;deb_component=main;deb_architecture=amd64;publish=1"
@@ -32,6 +34,8 @@ jobs:
3234
run: |
3335
jq -c '.productName = "PreMiD Portable"' ./dist/app/package.json > tmp.$$.json && mv tmp.$$.json ./dist/app/package.json
3436
yarn run build:n-appimage
37+
env:
38+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3539
- name: Create Release
3640
uses: softprops/action-gh-release@v1
3741
with:
@@ -62,6 +66,8 @@ jobs:
6266
yarn run dist
6367
- name: Building
6468
run: yarn run build
69+
env:
70+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6571
- name: Publish
6672
run: |
6773
curl -T ./dist/app/dist/${{ steps.info.outputs.productName }}.deb -udoomlerd:${{ secrets.BT_KEY }} "https://api.bintray.com/content/premid/debian-ubuntu/premid/${{ steps.info.outputs.version }}/pool/stable/p/premid_${{ steps.info.outputs.version }}_amd64.deb;deb_distribution=stable;deb_component=main;deb_architecture=amd64;publish=1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"start": "electron dist/app/.",
2222
"dev": "devScript",
2323
"dist": "tsc && devScript --copyOnly && cd dist/app/ && yarn install",
24-
"build": "electron-builder --project ./dist/app/",
24+
"build": "electron-builder --project ./dist/app/ -p never",
2525
"build:appimage": "electron-builder --project ./dist/app/ build -l AppImage --x64 -p onTagOrDraft",
2626
"build:n-appimage": "electron-builder --project ./dist/app/ build -l AppImage --x64 -p never"
2727
},

0 commit comments

Comments
 (0)