mirror of
https://github.com/element-hq/element-desktop.git
synced 2026-01-17 03:47:52 -05:00
Compare commits
2 Commits
develop
...
t3chguy/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c95f095b57 | ||
|
|
3db0a0a469 |
14
.github/workflows/build_and_deploy.yaml
vendored
14
.github/workflows/build_and_deploy.yaml
vendored
@@ -126,7 +126,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Prepare artifacts for deployment
|
- name: Prepare artifacts for deployment
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -ex
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
for arch in x64 arm64
|
for arch in x64 arm64
|
||||||
@@ -161,25 +161,25 @@ jobs:
|
|||||||
- name: "[Nightly] Strip version from installer file"
|
- name: "[Nightly] Strip version from installer file"
|
||||||
if: needs.prepare.outputs.nightly-version != ''
|
if: needs.prepare.outputs.nightly-version != ''
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -ex
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
for arch in x64 arm64
|
for arch in x64 arm64
|
||||||
do
|
do
|
||||||
[ -d "win-$arch" ] && mv packages.element.io/install/win32/$arch/{*,"Element Nightly Setup"}.exe
|
if [ -d "win-$arch" ]; then mv packages.element.io/install/win32/$arch/{*,"Element Nightly Setup"}.exe; fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
[ -d macos ] && mv packages.element.io/install/macos/{*,"Element Nightly"}.dmg
|
if [ -d macos ]; then mv packages.element.io/install/macos/{*,"Element Nightly"}.dmg; fi
|
||||||
|
|
||||||
# Linux
|
# Linux
|
||||||
[ -d linux-amd64-sqlcipher-static ] && mv packages.element.io/install/linux/glibc-x86-64/{*,element-desktop-nightly}.tar.gz
|
if [ -d linux-amd64-sqlcipher-static ]; then mv packages.element.io/install/linux/glibc-x86-64/{*,element-desktop-nightly}.tar.gz; fi
|
||||||
[ -d linux-arm64-sqlcipher-static ] && mv packages.element.io/install/linux/glibc-aarch64/{*,element-desktop-nightly}.tar.gz
|
if [ -d linux-arm64-sqlcipher-static ]; then mv packages.element.io/install/linux/glibc-aarch64/{*,element-desktop-nightly}.tar.gz; fi
|
||||||
|
|
||||||
- name: "[Release] Prepare release latest symlink"
|
- name: "[Release] Prepare release latest symlink"
|
||||||
if: needs.prepare.outputs.nightly-version == ''
|
if: needs.prepare.outputs.nightly-version == ''
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -ex
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
for arch in x64 arm64
|
for arch in x64 arm64
|
||||||
|
|||||||
Reference in New Issue
Block a user