Skip to content

Merge pull request #58 from telostat/fkoksal/issue-57 #21

Merge pull request #58 from telostat/fkoksal/issue-57

Merge pull request #58 from telostat/fkoksal/issue-57 #21

on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
- name: "Checkout Codebase"
uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}
- name: Log in to the Container registry
uses: docker/login-action@40891eba8c2bcd1309b07ba8b11232f313e86779
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: ${{ steps.release.outputs.release_created }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@c4ee3adeed93b1fa6a762f209fb01608c1a22f1e
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
if: ${{ steps.release.outputs.release_created }}
- name: Build and push Docker image for OpenFaas
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: .
file: Dockerfile.openfaas
push: true
tags: ghcr.io/telostat/mailess:openfaas-${{ steps.release.outputs.tag_name }}
labels: ${{ steps.meta.outputs.labels }}
if: ${{ steps.release.outputs.release_created }}
- name: Build and push Docker image
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: .
push: true
tags: ghcr.io/telostat/mailess:${{ steps.release.outputs.tag_name }}
labels: ${{ steps.meta.outputs.labels }}
if: ${{ steps.release.outputs.release_created }}