How to build local dev package? #6790
-
Hey folks, when:
- event: [push, tag, manual, pull_request]
steps:
build:
image: node:18.20.2
commands:
- |
apt-get update
apt-get install -y build-essential \
ca-certificates \
curl \
dbus \
g++ \
git \
gnupg \
jq \
libgbm1 \
libgtk-3-0 \
libkrb5-dev \
libsecret-1-dev \
libx11-dev \
libxkbfile-dev \
libxss1 \
pkg-config \
python-is-python3 \
python3 \
rsync \
xvfb
- yarn install
- yarn build
- export VERSION='0.0.0' && yarn build:vscode
- yarn release
- yarn release:standalone
- yarn package
- ls -la
- ls -la release/* Are there any other CI steps I'm missing here to get the package |
Beta Was this translation helpful? Give feedback.
Answered by
code-asher
May 9, 2024
Replies: 1 comment
-
That looks generally right to me although I think they end up in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
OCram85
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That looks generally right to me although I think they end up in
release-packages/*
.