mirror of
https://gitlab.com/qwerinope/qweribot.git
synced 2026-02-04 15:26:58 +01:00
add iteminfo command, change name of project to qweribot, fix ghcr publish url, add proper README.md
This commit is contained in:
27
.github/workflows/docker-qweribot.yml
vendored
Normal file
27
.github/workflows/docker-qweribot.yml
vendored
Normal 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 }}"
|
||||
Reference in New Issue
Block a user