Skip to content

fix: add test workflow #1

fix: add test workflow

fix: add test workflow #1

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- test-docker
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
# Checkout the code
- name: Checkout Code
uses: actions/checkout@v4
# Set up Docker Buildx (Optional but recommended for advanced builds)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Build the Docker image
- name: Build Docker Image
run: |
docker build -t notifier:latest .