Updated workflow
This commit is contained in:
parent
4124216408
commit
307641981c
1 changed files with 14 additions and 3 deletions
17
.github/workflows/release.yml
vendored
17
.github/workflows/release.yml
vendored
|
|
@ -1,8 +1,8 @@
|
||||||
name: Release build
|
name: Release build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
push:
|
||||||
types: [published]
|
branches: dev
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_linux:
|
build_linux:
|
||||||
|
|
@ -241,5 +241,16 @@ jobs:
|
||||||
gyp/refresh.sh --api-id $API_ID --api-hash $API_HASH
|
gyp/refresh.sh --api-id $API_ID --api-hash $API_HASH
|
||||||
cd ../out/Release
|
cd ../out/Release
|
||||||
make
|
make
|
||||||
strip --strip-all Telegram
|
strip --strip-all Telegram Updater
|
||||||
mv Telegram Kotatogram
|
mv Telegram Kotatogram
|
||||||
|
- name: Move artifact
|
||||||
|
run: |
|
||||||
|
cd tdesktop/out/Release
|
||||||
|
mkdir artifact
|
||||||
|
mv Kotatogram artifact/
|
||||||
|
mv Updater artifact/
|
||||||
|
- uses: actions/upload-artifact@master
|
||||||
|
name: Upload artifact
|
||||||
|
with:
|
||||||
|
name: Kotatogram
|
||||||
|
path: tdesktop/out/Release/artifact/
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue