This commit is contained in:
parent
52c88d0050
commit
64f1ca3a29
3 changed files with 5 additions and 4 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -30,9 +30,9 @@ jobs:
|
||||||
id: parse_version
|
id: parse_version
|
||||||
run: |
|
run: |
|
||||||
# Read values from version.txt
|
# Read values from version.txt
|
||||||
APPLICATION_ID=$(grep '^APPLICATION_ID=' version.txt | cut -d '=' -f 2)
|
APPLICATION_ID=$(grep '^APPLICATION_ID=' version.txt | awk -F 'APPLICATION_ID=' '{print $2}')
|
||||||
VERSION_NAME=$(grep '^VERSION_NAME=' version.txt | awk -F '=v' '{print $2}')
|
VERSION_NAME=$(grep '^VERSION_NAME=' version.txt | awk -F 'VERSION_NAME=' '{print $2}')
|
||||||
VERSION_CODE=$(grep '^VERSION_CODE=' version.txt | cut -d '=' -f 2)
|
VERSION_CODE=$(grep '^VERSION_CODE=' version.txt | awk -F 'VERSION_CODE=' '{print $2}')
|
||||||
TAG=$(cat release.txt) # Read the tag from release.txt
|
TAG=$(cat release.txt) # Read the tag from release.txt
|
||||||
RELEASE_NOTES=$(curl -s "https://api.github.com/repos/jellyfin/jellyfin-androidtv/releases/tags/$TAG" | jq -r '.body')
|
RELEASE_NOTES=$(curl -s "https://api.github.com/repos/jellyfin/jellyfin-androidtv/releases/tags/$TAG" | jq -r '.body')
|
||||||
|
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
v0.18.3
|
v0.18.3
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
APPLICATION_ID=org.askartv.tv
|
APPLICATION_ID=org.askartv.tv
|
||||||
VERSION_NAME=v0.2.9
|
VERSION_NAME=0.2.9
|
||||||
VERSION_CODE=15
|
VERSION_CODE=15
|
||||||
|
|
Loading…
Reference in a new issue