0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

[workflows] Fix error handling

Previously errors in actions was ignored

Change-Id: Ida263df740077926bcd8fd79a725f0cac447e59d
This commit is contained in:
Yury Shvedov 2024-02-04 13:22:57 +03:00 committed by Shvedov Yury
parent a0ef6c0ad9
commit b6f6d63d61
3 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
if [ -f /etc/os-release ]; then
. /etc/os-release
OS=$NAME

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
# get version
VERSION=$(jq -r '.version' version_info.json)
release_name="Beta $VERSION"

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
if [ -f /etc/os-release ]; then
. /etc/os-release
OS=$NAME