kraken-bot/.gitea/workflows/ci.yaml
Eric Meehan 8f72269f3e
Some checks failed
ci / docker (push) Failing after 30s
Install Docker
2025-02-14 11:50:27 -05:00

31 lines
596 B
YAML

name: ci
on:
push:
branches:
- develop
merge:
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Install Docker
run: |
apt-get update -y
apt-get install -y docker.io
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: ericomeehan/kraken-bot:latest