mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
Update build_and_deploy.yaml
This commit is contained in:
parent
0be0d6629d
commit
1964baad42
12
.github/workflows/build_and_deploy.yaml
vendored
12
.github/workflows/build_and_deploy.yaml
vendored
@ -164,14 +164,20 @@ jobs:
|
||||
# Windows
|
||||
for arch in x64 ia32 arm64
|
||||
do
|
||||
DIR=packages.element.io/install/win32/$arch [ -d "win-$arch" ] && ln -s "$(find $DIR -type f -iname "*.exe" | xargs -0 -n1 -- basename)" "$DIR/Element Setup.exe"
|
||||
pushd packages.element.io/install/win32/$arch
|
||||
[ -d "win-$arch" ] && ln -s "$(find . -type f -iname "*.exe" | xargs -0 -n1 -- basename)" "Element Setup.exe"
|
||||
popd
|
||||
done
|
||||
|
||||
# macOS
|
||||
DIR=packages.element.io/install/macos [ -d macos ] && ln -s "$(find $DIR -type f -iname "*.dmg" | xargs -0 -n1 -- basename)" "$DIR/Element.dmg"
|
||||
pushd packages.element.io/install/macos
|
||||
[ -d macos ] && ln -s "$(find . -type f -iname "*.dmg" | xargs -0 -n1 -- basename)" "Element.dmg"
|
||||
popd
|
||||
|
||||
# Linux
|
||||
DIR=packages.element.io/install/glibc-x86-64 [ -d linux-amd64-sqlcipher-static ] && ln -s "$(find $DIR -type f -iname "*.tar.gz" | xargs -0 -n1 -- basename)" "$DIR/element-desktop.tar.gz"
|
||||
pushd packages.element.io/install/glibc-x86-64
|
||||
[ -d linux-amd64-sqlcipher-static ] && ln -s "$(find . -type f -iname "*.tar.gz" | xargs -0 -n1 -- basename)" "element-desktop.tar.gz"
|
||||
popd
|
||||
|
||||
- name: Deploy artifacts
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user