Skip to content

Update docker.yaml

Update docker.yaml #9

Workflow file for this run

name: Docker
on:
push:
branches:
- main
workflow_dispatch: {}
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker Login
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/djoamersfoort/notifications/notifications:latest