forked from CringeStudios/element-desktop
24 lines
855 B
YAML
24 lines
855 B
YAML
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
build-element:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Download Cringe Studios configuration
|
|
run: "mkdir cringe && wget -O cringe/config.json https://chat.cringe-studios.com/config.json"
|
|
|
|
- name: Docker setup
|
|
run: "docker build --platform linux/amd64 -t element-desktop-dockerbuild -f dockerbuild/Dockerfile ."
|
|
|
|
- name: Docker build
|
|
run: >
|
|
ls -la && PWD=$(pwd) scripts/in-docker.sh bash -c 'ls -la &&
|
|
yarn add matrix-seshat &&
|
|
yarn &&
|
|
yarn run fetch --noverify --cfgdir cringe &&
|
|
SQLCIPHER_BUNDLED=1 yarn run docker:build:native &&
|
|
yarn run docker:build --linux rpm --linux deb --linux tar.xz --linux AppImage --win squirrel'
|