Fix AppImage's dependency (#775)

* move dependency installation into workflow

* dependency install not needed
This commit is contained in:
Baptiste Augrain 2021-07-26 01:15:55 +02:00 committed by GitHub
parent 98372f9d1e
commit 53b071366b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View file

@ -3,9 +3,6 @@
cd ..
if [[ "$VSCODE_ARCH" == "x64" ]]; then
# install a dep needed for this process
sudo apt-get install desktop-file-utils
wget -c https://github.com/$(wget -q https://github.com/AppImage/pkg2appimage/releases -O - | grep "pkg2appimage-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2)
chmod +x ./pkg2appimage-*.AppImage

View file

@ -53,7 +53,7 @@ docker run -ti --volume=<local vscodium source>:/root/vscodium --name=vscodium-b
When inside the container, you can use the following commands to build:
```
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y nodejs desktop-file-utils
npm install -g yarn