Compare commits

..

29 Commits

Author SHA1 Message Date
Brock H Caldwell
554b7774f6 Update docker
All checks were successful
CI / build-test (push) Successful in 3m10s
2026-03-09 13:14:27 -05:00
Brock H Caldwell
86ea9d5b38 Update ci
All checks were successful
CI / build-test (push) Successful in 3m52s
2026-03-09 12:45:40 -05:00
Brock H Caldwell
a61da34f2a Update ci
All checks were successful
CI / build-test (push) Successful in 3m6s
2026-03-09 12:41:33 -05:00
Brock H Caldwell
225754dfe5 Update ci
All checks were successful
CI / build-test (push) Successful in 3m25s
2026-03-09 12:01:56 -05:00
Brock H Caldwell
6e358fe1eb Update ci
All checks were successful
CI / build-test (push) Successful in 3m7s
2026-03-09 11:51:26 -05:00
Brock H Caldwell
a2da2698e3 Update ci
Some checks failed
CI / build-test (push) Failing after 1m57s
2026-03-09 11:41:59 -05:00
Brock H Caldwell
ee017d7ae6 Update ci
All checks were successful
CI / build-test (push) Successful in 14m37s
2026-03-08 23:37:49 -05:00
Brock H Caldwell
b0b5211e88 Update ci
All checks were successful
CI / build-test (push) Successful in 1m46s
2026-03-08 23:35:06 -05:00
Brock H Caldwell
c6f0220889 Update ci
All checks were successful
CI / build-test (push) Successful in 1m52s
2026-03-08 23:31:14 -05:00
Brock H Caldwell
b1cd1cf0bf Update ci
All checks were successful
CI / build-test (push) Successful in 1m53s
2026-03-08 23:28:05 -05:00
Brock H Caldwell
dab6504e71 Update ci
All checks were successful
CI / build-test (push) Successful in 1m44s
2026-03-08 23:17:44 -05:00
Brock H Caldwell
e361e998b3 Update ci
Some checks failed
CI / build-test (push) Failing after 6s
2026-03-08 23:16:40 -05:00
Brock H Caldwell
bc73625121 Update ci
Some checks failed
CI / build-test (push) Failing after 7s
2026-03-08 23:15:43 -05:00
Brock H Caldwell
a2439f3619 Update ci
All checks were successful
CI / build-test (push) Successful in 2m3s
2026-03-08 22:46:39 -05:00
Brock H Caldwell
edfb1b92cb Update ci
All checks were successful
CI / build-test (push) Successful in 1m59s
2026-03-08 22:34:57 -05:00
Brock H Caldwell
1097e4c313 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:28:30 -05:00
Brock H Caldwell
fe10a8d4b0 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:28:02 -05:00
Brock H Caldwell
96da4ce1b0 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:27:26 -05:00
Brock H Caldwell
6aad92a0c6 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:25:33 -05:00
Brock H Caldwell
7fc7db0577 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:12:53 -05:00
Brock H Caldwell
e5ed2d9556 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:10:23 -05:00
Brock H Caldwell
fbe4e736c8 Update ci
Some checks failed
CI / build-test (push) Has been cancelled
2026-03-08 22:08:52 -05:00
Brock H Caldwell
bc635d5b76 Update ci
All checks were successful
CI / build-test (push) Successful in 15m13s
2026-03-08 21:01:20 -05:00
Brock H Caldwell
c3a9c69c91 Update ci
Some checks failed
CI / build-test (push) Failing after 2m48s
2026-03-08 20:57:46 -05:00
Brock H Caldwell
b043bb9cc9 Update ci
Some checks failed
CI / build-test (push) Failing after 1m57s
2026-03-08 20:51:23 -05:00
Brock H Caldwell
d9afa9b558 Update ci
Some checks failed
CI / build-test (push) Failing after 2m34s
2026-03-08 20:45:52 -05:00
Brock H Caldwell
4f0b873bed Update ci
Some checks failed
CI / build-test (push) Failing after 1m52s
2026-03-08 20:43:04 -05:00
Brock H Caldwell
fb067d5396 Update ci
All checks were successful
CI / build-test (push) Successful in 1m59s
2026-03-08 20:37:44 -05:00
Brock H Caldwell
dbaf7c4880 Update ci
All checks were successful
CI / build-test (push) Successful in 1m50s
2026-03-08 20:29:36 -05:00
4 changed files with 104 additions and 29 deletions

102
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,102 @@
name: CI
on:
push:
tags:
- "v*"
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: Install phing
run: composer global require phing/phing
- name: Run composer
run: composer install --no-dev --no-scripts -o
- name: Build tailwind
run: APP_ENV=build php bin/console tailwind:build
- name: Install frontend assets
run: APP_ENV=build php bin/console importmap:install
- name: Compile assets
run: APP_ENV=build php bin/console asset-map:compile
- name: Login to registry
uses: docker/login-action@v2
with:
registry: "${{ vars.REGISTRY_URL }}"
username: "${{ vars.REGISTRY_USER }}"
password: "${{ vars.REGISTRY_PASS }}"
- name: Create torsearch-app docker image
run: |
tag="${{ gitea.REF_NAME }}"
tmdb_api="${{ vars.TMDB_API }}"
version=${tag:1}
docker build -f docker/Dockerfile.app \
-t code.caldwell.digital/home/torsearch-app:${version} \
-t code.caldwell.digital/home/torsearch-app:latest \
--build-arg "APP_VERSION=${version}" \
--build-arg "TMDB_API=${tmdb_api}" \
.
docker push code.caldwell.digital/home/torsearch-app:${version}
docker push code.caldwell.digital/home/torsearch-app:latest
- name: Create torsearch-worker docker image
run: |
tag="${{ gitea.REF_NAME }}"
tmdb_api="${{ vars.TMDB_API }}"
version=${tag:1}
docker build -f docker/Dockerfile.worker \
-t code.caldwell.digital/home/torsearch-worker:${version} \
-t code.caldwell.digital/home/torsearch-worker:latest \
--build-arg "APP_VERSION=${version}" \
--build-arg "TMDB_API=${tmdb_api}" \
.
docker push code.caldwell.digital/home/torsearch-worker:${version}
docker push code.caldwell.digital/home/torsearch-worker:latest
- name: Create torsearch-scheduler docker image
run: |
tag="${{ gitea.REF_NAME }}"
tmdb_api="${{ vars.TMDB_API }}"
version=${tag:1}
docker build -f docker/Dockerfile.scheduler \
-t code.caldwell.digital/home/torsearch-scheduler:${version} \
-t code.caldwell.digital/home/torsearch-scheduler:latest \
--build-arg "APP_VERSION=${version}" \
--build-arg "TMDB_API=${tmdb_api}" \
.
docker push code.caldwell.digital/home/torsearch-scheduler:${version}
docker push code.caldwell.digital/home/torsearch-scheduler:latest
- name: Create artifact
run: |
file="torsearch-${{ gitea.REF_NAME }}.tar.gz"
touch $file
tar -cvzf $file --exclude=$file .
- name: Create release
uses: akkuman/gitea-release-action@v1
with:
files: |-
"torsearch-${{ gitea.REF_NAME }}.tar.gz"
# - name: Upload artifact
# uses: actions/upload-artifact@v3
# with:
# name: "torsearch-${{ gitea.REF_NAME }}.tar.gz"
# path: "torsearch-${{ gitea.REF_NAME }}.tar.gz"
# compression_level: 9

View File

@@ -1,29 +0,0 @@
name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: Install phing
run: composer global require phing/phing
- name: Run composer
run: composer install --no-dev --no-scripts -o
- name: Build tailwind
run: APP_ENV=build php bin/console tailwind:build
- name: Compile assets
run: APP_ENV=build php bin/console asset-map:compile

View File

@@ -15,6 +15,7 @@ FROM code.caldwell.digital/home/torsearch-app:${APP_VERSION} AS app_image
FROM code.caldwell.digital/home/torsearch-base-worker-supervisord:latest
# Set the APP_VERSION in the image
ARG APP_VERSION="latest"
ENV APP_VERSION=${APP_VERSION}
ARG TMDB_API=""

View File

@@ -15,6 +15,7 @@ FROM code.caldwell.digital/home/torsearch-app:${APP_VERSION} AS app_image
FROM code.caldwell.digital/home/torsearch-base-worker-supervisord:latest
# Set the APP_VERSION in the image
ARG APP_VERSION="latest"
ENV APP_VERSION=${APP_VERSION}
ARG TMDB_API=""