Skip to content

update

update #37

Workflow file for this run

name: "Build"
on:
push:
branches: [ master ]
paths:
- '**/*.go'
- 'go.*'
- 'build/**'
jobs:
build-docker:
name: "Build Docker"
runs-on: "ubuntu-latest"
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
name: Check out code
- uses: mr-smithers-excellent/docker-build-push@v6
name: Build & push Docker image
with:
image: email_router
tags: latest
addLatest: true
registry: ghcr.io
dockerfile: build/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}