botbotbot/.forgejo/workflows/push.yaml
Edgar P. Burkhart 581c39d507
Some checks failed
Push Docker image / build (push) Failing after 1s
Change runner environment in GitHub Actions workflow to catthehacker
2025-05-05 09:42:19 +02:00

25 lines
582 B
YAML

name: Push Docker image
on:
push:
jobs:
build:
runs-on: catthehacker
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: code.edgarpierre.fr
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: edpibu/botbotbot:${{ github.ref_name }}