1
0

Rename package workflow to proper naming scheme

This commit is contained in:
April John
2023-10-07 15:00:39 +02:00
committed by GitHub
parent 7250af1cab
commit eff2e5574b
+5 -3
View File
@@ -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