first commit
Some checks failed
docker / docker-push (push) Failing after 3m32s

This commit is contained in:
2025-12-24 22:13:09 +03:00
commit 642fa81584
7 changed files with 125 additions and 0 deletions

24
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: docker
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
docker-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build -t docker.sonoma.su/penisbot .
- name: Login Sonoma Docker registry
run: docker login docker.sonoma.su --username ${{ secrets.DOCKER_LOGIN }} --password ${{ secrets.DOCKER_PASSWORD }}
- name: Push image
run: docker push docker.sonoma.su/penisbot