add iteminfo command, change name of project to qweribot, fix ghcr publish url, add proper README.md

This commit is contained in:
2025-04-05 17:54:22 +02:00
parent 416ae34317
commit 564ead12c6
15 changed files with 164 additions and 99 deletions

27
.github/workflows/docker-qweribot.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Build and Publish qweribot docker image
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login to container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get repository
uses: actions/checkout@v4
- name: Docker Build and push
uses: docker/build-push-action@v6
with:
file: Dockerfile.qweribot
context: .
push: true
tags: ghcr.io/qwerinope/qweribot-bot:latest
secrets: "github_token=${{ secrets.GITHUB_TOKEN }}"