Skip to content

Merge pull request #43 from bottledcode/dependabot/composer/withinbor… #77

Merge pull request #43 from bottledcode/dependabot/composer/withinbor…

Merge pull request #43 from bottledcode/dependabot/composer/withinbor… #77

Workflow file for this run

name: push
on:
push:
branches:
- main
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/mailing-list/runtime:${{ github.sha }}