2024-10-04 05:41:41 +08:00
|
|
|
name: Deploy Images to GHCR
|
|
|
|
|
|
|
|
env:
|
|
|
|
DOTNET_VERSION: '6.0.x'
|
2024-11-11 17:32:17 +08:00
|
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
2024-10-04 05:41:41 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2024-10-04 06:17:52 +08:00
|
|
|
push-app-image:
|
2024-10-04 05:41:41 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: './apps/api'
|
|
|
|
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: 'Build Inventory Image'
|
|
|
|
run: |
|
2024-11-11 17:32:17 +08:00
|
|
|
docker build . --tag ghcr.io/mendableai/firecrawl:latest --secret id=SENTRY_AUTH_TOKEN
|
2024-10-04 05:41:41 +08:00
|
|
|
docker push ghcr.io/mendableai/firecrawl:latest
|