retropulse/.forgejo/workflows/docker-push.yml
aiquiral 25a10cfd6e
Some checks failed
/ build-and-push (push) Failing after 7m22s
trying self-hosted again
2025-09-10 04:16:06 +00:00

32 lines
655 B
YAML

on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to codeberg
uses: docker/login-action@v3
with:
registry: codeberg.org
username: aiquiral
password: ${{ secrets.PASS }}
- name: Build and push image
id: build
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: retropulse:latest
platforms: linux/amd64