Skip to content

Update README.md

Update README.md #21

Workflow file for this run

name: Deploy Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-image:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Set up Docker Buildx'
uses: docker/setup-buildx-action@v1
- name: 'Build Service Image'
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/mendableai/firecrawl-mcp-server:latest
cache-from: type=registry,ref=ghcr.io/mendableai/firecrawl-mcp-server:latest
cache-to: type=inline