Skip to content

Merge pull request #46 from bottledcode/dependabot/github_actions/act… #60

Merge pull request #46 from bottledcode/dependabot/github_actions/act…

Merge pull request #46 from bottledcode/dependabot/github_actions/act… #60

Workflow file for this run

name: push
on:
push:
branches:
- main
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v5
- 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@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/mailing-list/runtime:${{ github.sha }}