Merge remote-tracking branch 'origin/V3' into Api-Prox-Svc

This commit is contained in:
Kentai Radiquum 2025-07-08 12:59:57 +05:00
commit 901e51a9da
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,25 @@
name: Build and Publish 'anix-player-parsers' to Docker Hub
on:
push:
branches:
- V3
paths:
- "player-parsers/*.ts"
- "player-parsers/Dockerfile"
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build Image
run: |
cd ./player-parsers
docker build . -t radiquum/anix-player-parser:dev
- name: Publish Image
run: |
docker login -u radiquum -p ${{ secrets.DOCKERHUB_TOKEN }}
docker push radiquum/anix-player-parser:dev

25
.github/workflows/docker-anix.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Build and Publish 'anix' to Docker Hub
on:
push:
branches:
- V3
paths:
- 'app/**'
- 'Dockerfile'
- 'middleware.ts'
- 'next.config.js'
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build Image
run: docker build . -t radiquum/anix:dev
- name: Publish Image
run: |
docker login -u radiquum -p ${{ secrets.DOCKERHUB_TOKEN }}
docker push radiquum/anix:dev