Nikolai X. Shadeuxs
f21ee8c4ed
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 9m21s
75 lines
2.7 KiB
YAML
75 lines
2.7 KiB
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "dev"
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Docker
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USER }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Extract metadata for API
|
|
uses: docker/metadata-action@v5
|
|
id: meta-api
|
|
with:
|
|
images: vontainment/v-firecrawl
|
|
flavor: latest=false
|
|
tags: |
|
|
type=raw,value=main,enable=${{ gitea.ref == 'refs/heads/main' }}
|
|
type=raw,value=dev,enable=${{ gitea.ref == 'refs/heads/dev' }}
|
|
type=sha,priority=100,enable=${{ gitea.event_name == 'push' }}
|
|
|
|
- name: Extract metadata for Playwright Service
|
|
uses: docker/metadata-action@v5
|
|
id: meta-playwright
|
|
with:
|
|
images: vontainment/v-playwright
|
|
flavor: latest=false
|
|
tags: |
|
|
type=raw,value=main,enable=${{ gitea.ref == 'refs/heads/main' }}
|
|
type=raw,value=dev,enable=${{ gitea.ref == 'refs/heads/dev' }}
|
|
type=sha,priority=100,enable=${{ gitea.event_name == 'push' }}
|
|
|
|
- name: Build and push Docker image (API)
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./apps/api
|
|
file: ./apps/api/Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta-api.outputs.tags }}
|
|
labels: ${{ steps.meta-api.outputs.labels }}
|
|
cache-from: type=local,src=/opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build/
|
|
cache-to: type=local,dest=/opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build-new/
|
|
|
|
- name: Build and push Docker image (Playwright Service)
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./apps/playwright-service
|
|
file: ./apps/playwright-service/Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta-playwright.outputs.tags }}
|
|
labels: ${{ steps.meta-playwright.outputs.labels }}
|
|
cache-from: type=local,src=/opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build/
|
|
cache-to: type=local,dest=/opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build-new/
|
|
|
|
- name: Rotate build cache
|
|
run: |
|
|
rm -rf /opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build/
|
|
mv /opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build-new/ /opt/hostedtoolcache/${{ gitea.repository }}-${{ gitea.ref_name }}/build/
|