0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-24 06:24:38 +03:00
yandex-music-linux/.github/workflows/retrieve_version.sh
Andrey Onishchenko 1cbc044c85 version_info format change
nix fix
2024-02-18 21:00:32 +03:00

13 lines
304 B
Bash

#!/bin/bash
set -e
# get version
VERSION=$(jq -r '.ym.version' ./utility/version_info.json)
release_name="Beta $VERSION"
tag_name="v$VERSION"
#write variables to github env
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "release_name=$release_name" >> $GITHUB_ENV
echo "tag_name=$tag_name" >> $GITHUB_ENV