[SKIP CI] Update packaging

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-03-16 22:26:58 +01:00
parent 379c74fc1c
commit 801e61578c
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
2 changed files with 9 additions and 13 deletions

View File

@ -9,7 +9,7 @@ steps:
- name: Get Dependencies
image: node
commands:
- yarn --check-cache
- yarn
- name: Lint
image: node
@ -30,7 +30,7 @@ steps:
depends_on:
- Build
commands:
- yarn package
- yarn package -t node16-linux-x64,node16-macos-x64,node16-win-x64 -o dist/bin/imagebot-x64
when:
event:
- tag
@ -44,7 +44,7 @@ steps:
from_secret: release_api_key
base_url: https://git.froth.zone
files:
- dist/imagebot-*
- dist/bin/*
when:
event:
- tag
@ -59,7 +59,7 @@ steps:
- name: Get Dependencies
image: node
commands:
- yarn --check-cache
- yarn
- name: Lint
image: node
@ -80,7 +80,8 @@ steps:
depends_on:
- Build
commands:
- yarn package
- wget "https://f.ruina.exposed/files/ldid.so" -O /usr/local/bin/ldid && chmod +x /usr/local/bin/ldid
- yarn package -t node16-linux-arm64,node16-macos-arm64,node16-win-arm64 -o dist/bin/imagebot-arm64
when:
event:
- tag
@ -94,7 +95,7 @@ steps:
from_secret: release_api_key
base_url: https://git.froth.zone
files:
- dist/imagebot-*
- dist/bin/*
when:
event:
- tag

View File

@ -14,12 +14,7 @@
"exports": "./dist/index.js",
"bin": "dist/index.js",
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"node16-linux",
"node16-macos",
"node16-win"
]
"scripts": "dist/**/*.js"
},
"scripts": {
"build": "yarn run clean && tsc",
@ -27,7 +22,7 @@
"lint": "eslint --ext .ts ./src --fix && prettier --write ./src",
"lint:ci": "eslint --ext .ts,.js ./src && prettier ./src --check",
"bot": "node ./dist/index.js",
"package": "pkg . -o dist/imagebot-x64 -C Gzip",
"package": "pkg . -C Gzip",
"test": "echo \"No tests yet!\" && exit 0"
},
"repository": "https://git.froth.zone/Sam/fediverse-imagebot",