Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Update HTML Meta Tag
- name: Update HTML Meta Tag and package.json Version
run: |
VERSION=$(date '+%y.%m.%d')
# Update the version in index.html
sed -i "s/<meta name=\"version\" content=\"[^\"]*\">/<meta name=\"version\" content=\"$VERSION\">/g" public/index.html
# Update the version in package.json
sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"$VERSION\"/g" package.json

- name: Commit Changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add public/index.html
git commit -m "Update version meta tag to $VERSION"
git add public/index.html package.json
git commit -m "Update version to $VERSION"
git push

- name: Log in to Docker Hub
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

Download Viewarr is a Node.js application designed to fetch and display download queues for [Radarr](https://radarr.video/) and [Sonarr](https://sonarr.tv/). It provides a simple and user-friendly interface to view movies and TV show download queues via a web page.

[![image](https://github.com/user-attachments/assets/c439e054-9d2e-486c-a555-defbf66e912d)](https://github.com/pir8radio/DownloadViewarr)


## Docker Image
[![image](https://github.com/user-attachments/assets/2f17bae4-5dc6-4b7d-83b3-da6b7422a536)](https://hub.docker.com/r/pir8radio/downloadviewarr)

Expand Down