From 9a056919b98082ab9830201a78fd9af5f544f3d7 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 3 Oct 2024 18:41:41 -0300 Subject: [PATCH] Create deploy-image.yml --- .github/workflows/deploy-image.yml | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/deploy-image.yml diff --git a/.github/workflows/deploy-image.yml b/.github/workflows/deploy-image.yml new file mode 100644 index 00000000..74809d95 --- /dev/null +++ b/.github/workflows/deploy-image.yml @@ -0,0 +1,32 @@ +name: Deploy Images to GHCR + +env: + DOTNET_VERSION: '6.0.x' + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + push-store-image: + 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: | + docker build . --tag ghcr.io/mendableai/firecrawl:latest + docker push ghcr.io/mendableai/firecrawl:latest \ No newline at end of file