Skip to content

Added scan subdomain only feature in onboard command #1

Added scan subdomain only feature in onboard command

Added scan subdomain only feature in onboard command #1

name: Mantis CLI MR/PR Release
on:
pull_request:
branches:
- main
types:
- closed
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: phonepe/mantis-upstream
jobs:
build-and-push-image:
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
actions: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python and Git
uses: ./.github/actions/setup-python-and-git
with:
python-version: '3.9'
- name: Install Poetry
run: pip install poetry==1.4.2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}