Files
IPTV-Restream/.github/workflows/release-build.yml
2025-01-09 00:45:59 +01:00

45 lines
2.0 KiB
YAML

name: Build and Publish Docker Images
on:
release:
types: [published]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Backend Image
run: |
docker build -t ghcr.io/antebrl/iptv-restream/backend:${{ github.event.release.tag_name }} ./backend
docker tag ghcr.io/antebrl/iptv-restream/backend:${{ github.event.release.tag_name }} ghcr.io/antebrl/iptv-restream/backend:latest
docker push ghcr.io/antebrl/iptv-restream/backend:${{ github.event.release.tag_name }}
docker push ghcr.io/antebrl/iptv-restream/backend:latest
- name: Build and Push Frontend Image
run: |
docker build --build-arg VITE_BACKEND_STREAMS_PATH=/streams/ --build-arg VITE_STREAM_DELAY=18 -t ghcr.io/antebrl/iptv-restream/frontend:${{ github.event.release.tag_name }} ./frontend
docker tag ghcr.io/antebrl/iptv-restream/frontend:${{ github.event.release.tag_name }} ghcr.io/antebrl/iptv-restream/frontend:latest
docker push ghcr.io/antebrl/iptv-restream/frontend:${{ github.event.release.tag_name }}
docker push ghcr.io/antebrl/iptv-restream/frontend:latest
- name: Build and Push Nginx Image
run: |
docker build -t ghcr.io/antebrl/iptv-restream/nginx:${{ github.event.release.tag_name }} ./deployment/nginx
docker tag ghcr.io/antebrl/iptv-restream/nginx:${{ github.event.release.tag_name }} ghcr.io/antebrl/iptv-restream/nginx:latest
docker push ghcr.io/antebrl/iptv-restream/nginx:${{ github.event.release.tag_name }}
docker push ghcr.io/antebrl/iptv-restream/nginx:latest