0
v-firecrawl/.gitea/workflows/main.yml
Nikolai X. Shadeuxs 680031214c
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 26s
Update .gitea/workflows/main.yml
2024-06-19 04:21:03 -04:00

53 lines
1.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
uses: docker/metadata-action@v5
id: meta
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: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: apps/api/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.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/