Mantis CLI Latest Release #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mantis CLI Latest Release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'What kind of release is this?' | |
required: true | |
type: choice | |
options: | |
- 'major' | |
- 'minor' | |
- 'patch' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: phonepe/mantis | |
jobs: | |
build-and-push-image: | |
if: github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
actions: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # added to fetch tags from git | |
- 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: Bump poetry version and add git tag | |
uses: ./.github/actions/bump-version-and-git-tag | |
with: | |
releaseType: ${{ inputs.releaseType }} | |
- name: Push tag changes | |
run: | | |
git push -u origin main | |
git push origin ${{ env.TAG_VERSION }} | |
git log -1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- 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 }}:${{ env.LATEST_IMAGE_VERSION }} | |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest | |
labels: ${{ steps.meta.outputs.labels }} |