mekomsolutions / shared-github-workflow

This repository contains a shared github workflow for deploying maven artifacts to Mekom nexus.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shared GitHub Workflows

This repository contains shared GitHub workflows that can be used in other repositories.

Workflows

The following reusable workflows are available in this repository:

Usage

To use a workflow in your repository, create a new workflow file in the .github/workflows directory of your repository and use the uses keyword to include the workflow from this repository.

For more information, see the official GitHub documentation.

For example, to use the Docker Build and Publish workflow, create a new file .github/workflows/docker-build-publish.yml in your repository with the following content:

name: Docker Build and Publish

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
  release:
    types: [published]

jobs:
  build-publish:
    uses: mekomsolutions/shared-github-workflow/.github/workflows/docker-build-publish.yml@main
    with:
      context: . # Optional default value: .
      dockerfile: Dockerfile # Optional default value: Dockerfile
      image-name: my-image # Required
    secrets:
      DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
      DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}

Replace my-image with the name of the Docker image you want to build and publish. You also need to set the DOCKER_HUB_USERNAME and DOCKER_HUB_PASSWORD secrets in your repository settings.

Contributing

To contribute a new workflow or make changes to an existing workflow, create a pull request with your changes. The pull request will be reviewed and merged by the repository maintainers.

About

This repository contains a shared github workflow for deploying maven artifacts to Mekom nexus.