Compare commits

..

19 Commits

Author SHA1 Message Date
adf003b7b2 Trigger new release autobuild for v1.11.11
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 14m12s
Get latest release version / get-version (push) Successful in 35s
2025-06-19 00:01:27 +00:00
bd301a38df Trigger new release autobuild for v1.11.10
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 4m16s
Get latest release version / get-version (push) Successful in 39s
2024-11-15 06:00:20 +00:00
50922170fb Trigger new release autobuild for v1.11.9
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 3m19s
Get latest release version / get-version (push) Successful in 17s
2024-10-28 05:00:16 +00:00
e7efcb8304 Trigger new release autobuild for v1.11.8
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 3m12s
Get latest release version / get-version (push) Successful in 12s
2024-10-25 05:00:21 +00:00
a75bbf0e6d Only check on days when not auto-building
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 3m10s
Get latest release version / get-version (push) Successful in 16s
2024-07-21 09:58:28 -05:00
50f1904d92 Reduced version check rate
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 3m9s
Get latest release version / get-version (push) Successful in 8s
2024-06-12 13:13:15 -05:00
8eaa4b081d Standardize remote repository monitoring setup
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 2m46s
Get latest release version / get-version (push) Successful in 6s
2024-06-04 11:52:39 -05:00
567f359b50 Trigger new release autobuild for v1.11.7
All checks were successful
Build on Commit / build-and-push-image (push) Successful in 2m44s
Get latest release version / get-version (push) Successful in 5s
2024-06-04 15:30:59 +00:00
e5d0ac9bd6 Clean up for prod use
Some checks failed
Build on Commit / build-and-push-image (push) Has been cancelled
Get latest release version / get-version (push) Successful in 7s
2024-06-04 10:05:03 -05:00
5bd0129ef3 Final step not processing
All checks were successful
Get latest release version / get-version (push) Successful in 7s
2024-06-04 09:02:46 -05:00
aec1fb3dfa Test another format
All checks were successful
Get latest release version / get-version (push) Successful in 6s
2024-06-04 09:00:16 -05:00
e7079e9ea9 Trying another format
All checks were successful
Get latest release version / get-version (push) Successful in 6s
2024-06-04 08:55:54 -05:00
20ab46c06b Trigger new release autobuild for
Some checks failed
Build on Commit / build-and-push-image (push) Has been cancelled
2024-06-04 13:40:59 +00:00
21df4b47b0 Test using environment variable
All checks were successful
Get latest release version / get-version (push) Successful in 8s
2024-06-04 08:35:50 -05:00
a07f353554 Try with the right step name
All checks were successful
Get latest release version / get-version (push) Successful in 6s
2024-06-03 22:29:32 -05:00
ec9f27d722 Print values to logs
All checks were successful
Get latest release version / get-version (push) Successful in 5s
2024-06-03 22:25:45 -05:00
96eac0ff14 Missed window
All checks were successful
Get latest release version / get-version (push) Successful in 6s
2024-06-03 22:22:17 -05:00
bfb16af1ea Trying again to pass variable 2024-06-03 22:21:01 -05:00
caf65a5e03 Trigger new release autobuild for
Some checks failed
Build on Commit / build-and-push-image (push) Has been cancelled
2024-06-04 03:18:58 +00:00
5 changed files with 15 additions and 10 deletions

View File

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

View File

@@ -0,0 +1 @@
v1.11.11

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

@@ -1,7 +1,11 @@
name: Get latest release version name: Get latest release version
on: on:
schedule: schedule:
- cron: "18 * * * *" - cron: "0 0 * * 1-6"
env:
MONITOR_URL: "https://api.github.com/repos/pterodactyl/panel/releases/latest"
jobs: jobs:
get-version: get-version:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -14,15 +18,16 @@ jobs:
- name: Fetch release version - name: Fetch release version
id: version-check id: version-check
run: | run: |
GITEA_OUTPUT="VERSION_TAG=$(curl -sL https://api.github.com/repos/pterodactyl/panel/releases/latest | jq -r .tag_name)" VERSION_TAG=$(curl -sL $MONITOR_URL | jq -r .tag_name)
echo "$GITEA_OUTPUT" > release-versions/panel-latest.txt echo "$VERSION_TAG" > .gitea/remote-releases/latest.txt
echo ::set-output name=version::"$VERSION_TAG"
- name: Check for modified files - name: Check for modified files
id: git-check id: git-check
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true") run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
- name: Commit latest release version - name: Commit latest release version
if: steps.git-check.outputs.modified == 'true' if: steps.git-check.outputs.modified == 'true'
run: | run: |
git config --global user.name 'Mindfang' git config --global user.name 'Actions'
git config --global user.email 'mindfang@taco.quest' git config --global user.email 'noreply@taco.quest'
git commit -am "Trigger new release autobuild for ${{ steps.vars.outputs.VERSION_TAG }}" git commit -am "Trigger new release autobuild for ${{ steps.version-check.outputs.version }}"
git push git push

View File

@@ -1 +0,0 @@
v1.11.7