mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-04-19 19:15:08 +00:00
Since commit 2687d20280
, the Makefile
named release.mk stopped handling dependencies between recipes, because
they have to be executed separately (from different Github Actions
jobs).
Using a Makefile no longer provides any real benefit. Replace it by
several individual release scripts for simplicity and readability.
Refs #5306 <https://github.com/Genymobile/scrcpy/pull/5306>
PR #5515 <https://github.com/Genymobile/scrcpy/pull/5515>
5 lines
164 B
Text
5 lines
164 B
Text
# This file must be sourced from the release scripts directory
|
|
WORK_DIR="$PWD/work"
|
|
OUTPUT_DIR="$PWD/output"
|
|
|
|
VERSION="${VERSION:-$(git describe --tags --always)}"
|