2025-01-22 11:38:20 -05:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
2025-01-22 12:05:01 -05:00
|
|
|
runs-on: ubuntu-20.04:docker
|
2025-01-22 11:38:20 -05:00
|
|
|
steps:
|
|
|
|
- name: Login to Local Container Registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: forgejo.ultrablob.me
|
|
|
|
username: ${{ env.GITHUB_ACTOR }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v6
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
tags: ultrablob/ape-ame-backend:latest
|