This commit is contained in:
parent
f475d37251
commit
52c88d0050
2 changed files with 1 additions and 2 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
run: |
|
||||
# Read values from version.txt
|
||||
APPLICATION_ID=$(grep '^APPLICATION_ID=' version.txt | cut -d '=' -f 2)
|
||||
VERSION_NAME=$(grep '^VERSION_NAME=' version.txt | cut -d '=v' -f 2)
|
||||
VERSION_NAME=$(grep '^VERSION_NAME=' version.txt | awk -F '=v' '{print $2}')
|
||||
VERSION_CODE=$(grep '^VERSION_CODE=' version.txt | cut -d '=' -f 2)
|
||||
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')
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
v0.18.3
|
||||
|
||||
|
|
Loading…
Reference in a new issue