mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-12 02:09:12 +08:00
a72a8906b0
* Revert "Revert vcpkg ffmpeg (#8751)" This reverts commit5c16a8302e
. * vcpkg: Reland ffmpeg and try to fix sciter build Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * vcpkg: Detect AVX2 by requiring __m256i (ubuntu18.04 sciter) Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Install nasm from debian buster and python3.7 ... from ubuntu universe [Skip CI] * vcpkg: Add libyuv port with fix for windows Fromabc59feabf
Found by @deep-soft Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Bump vcpkg baseline to 2024.07.12 Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Fix F-Droid version action I thought the latest release will be updated by the time hook starts but it is not the case. Get tag from GITHUB_REF instead if GITHUB_REF_TYPE is "tag". Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> --------- Signed-off-by: Vasyl Gello <vasek.gello@gmail.com>
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
name: Fdroid version file generation
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
- 'v[0-9]+.[0-9]+.[0-9]+-[0-9]+'
|
|
- '[0-9]+.[0-9]+.[0-9]+-[0-9]+'
|
|
|
|
jobs:
|
|
# https://gitlab.com/fdroid/fdroiddata/-/blob/master/metadata/com.carriez.flutter_hbb.yml
|
|
# Finds latest release and transforms F-Droid version code from version as follows:
|
|
# X.Y.Z-A => X * 1e6 + Y * 1e4 + Z * 1e2 + A
|
|
update-fdroid-version-file:
|
|
name: Publish RustDesk version file for F-Droid updater
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate RustDesk version file
|
|
run: |
|
|
if [ "${GITHUB_REF_TYPE}" = "tag" ]; then
|
|
UPSTREAM_VERNAME="${GITHUB_REF##refs/tags/}"
|
|
UPSTREAM_VERNAME="${UPSTREAM_VERNAME##v}"
|
|
else
|
|
UPSTREAM_VERNAME="$(curl https://api.github.com/repos/rustdesk/rustdesk/releases/latest | jq -r .tag_name | sed 's/^v//')"
|
|
fi
|
|
UPSTREAM_VERCODE="$(echo "$UPSTREAM_VERNAME" | tr '.' ' ' | tr '-' ' ' | while read -r MAJOR MINOR PATCH REV; do [ -z "$MAJOR" ] && MAJOR=0; [ -z "$MINOR" ] && MINOR=0; [ -z "$PATCH" ] && PATCH=0; [ -z "$REV" ] && REV=0; echo "$(( 1000000 * $MAJOR + 10000 * $MINOR + 100 * $PATCH + $REV ))"; done)"
|
|
echo "versionName=$UPSTREAM_VERNAME" > rustdesk-version.txt
|
|
echo "versionCode=$UPSTREAM_VERCODE" >> rustdesk-version.txt
|
|
shell: bash
|
|
|
|
- name: Publish RustDesk version file
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
prerelease: true
|
|
tag_name: "fdroid-version"
|
|
files: |
|
|
./rustdesk-version.txt
|