Reorganized remote release monitoring
Some checks failed
Build on Commit / build-and-push-image (push) Has been cancelled
Get latest release version / get-version (push) Successful in 6s

This commit is contained in:
2024-06-04 11:12:33 -05:00
parent 5fd3987e0e
commit bb117c9c31
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
.gitea/
.gitignore .gitignore
README.md README.md
docker-compose.yml docker-compose.yml
release-versions

View File

@@ -6,7 +6,7 @@ on:
branches: branches:
- "main" - "main"
paths-ignore: paths-ignore:
- ".gitea/**" - ".gitea/workflows/**"
schedule: schedule:
- cron: "0 0 * * 0" - cron: "0 0 * * 0"

View File

@@ -19,7 +19,7 @@ jobs:
id: version-check id: version-check
run: | run: |
VERSION_TAG=$(curl -sL $MONITOR_URL | jq -r .tag_name) VERSION_TAG=$(curl -sL $MONITOR_URL | jq -r .tag_name)
echo "$VERSION_TAG" > release-versions/latest.txt echo "$VERSION_TAG" > .gitea/remote-releases/latest.txt
echo ::set-output name=version::"$VERSION_TAG" echo ::set-output name=version::"$VERSION_TAG"
- name: Check for modified files - name: Check for modified files
id: git-check id: git-check