0
v-firecrawl/.gitea/workflows/main.yml
Nikolai X. Shadeuxs 39efee7c7b
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 6m40s
Update .gitea/workflows/main.yml
2024-06-19 04:28:32 -04:00

54 lines
1.3 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 Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
- 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-gpt-node-app
flavor: latest=false
tags: |
type=raw,value=main,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }}
type=sha,priority=100,enable=${{ github.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 }}