Skip to content

Merge pull request #71 from bottledcode/dependabot/github_actions/doc… #75

Merge pull request #71 from bottledcode/dependabot/github_actions/doc…

Merge pull request #71 from bottledcode/dependabot/github_actions/doc… #75

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@v3
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 }}