Files
dickbot/.github/workflows/docker-image.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 19: cannot unmarshal !!seq into model.Job
2025-01-24 16:08:24 +03:00

22 lines
403 B
YAML

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build -t smilerex/dickbot:latest
deploy:
- uses: actions/checkout@v4
- name: Deploy image to docker hub
- run: docker push smilerex/dickbot:latest