mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:33:08 +02:00
Rename package workflow to proper naming scheme
This commit is contained in:
parent
7250af1cab
commit
eff2e5574b
1 changed files with 5 additions and 3 deletions
8
.github/workflows/package.yml
vendored
8
.github/workflows/package.yml
vendored
|
@ -12,8 +12,8 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push_to_registry:
|
build_binaries:
|
||||||
name: Push Docker image to GHCR
|
name: Build & ship binaries
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -52,9 +52,11 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
corepack enable pnpm@latest
|
corepack enable
|
||||||
|
corepack prepare pnpm@latest --activate
|
||||||
pnpm install
|
pnpm install
|
||||||
npm install -g pkg
|
npm install -g pkg
|
||||||
pnpm run build
|
pnpm run build
|
||||||
cd packages/backend
|
cd packages/backend
|
||||||
pkg --public ./built/boot/entry.js
|
pkg --public ./built/boot/entry.js
|
||||||
|
ls
|
||||||
|
|
Loading…
Reference in a new issue