Skip to content

slack body format string #18

slack body format string

slack body format string #18

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- '*'
tags:
- 'v*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile
tags: ghcr.io/enxservices/k8s-backup-mysql:latest