pizda
Some checks failed
docker / docker-push (push) Failing after 32s

This commit is contained in:
2026-03-11 01:21:26 +03:00
parent 72c59b50be
commit c681f1cd07
2 changed files with 1 additions and 1 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/wishlistbot .
- 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/wishlistbot