wikimore/.forgejo/workflows/docker-privatecoffee.yml
Kumi b3462039a2
feat(ci): migrate to Forgejo Docker registry
Updates CI/CD workflow to trigger on tag pushes and use Forgejo credentials
Renames login and push steps to reflect the new container registry
Modifies documentation and compose file to point to the updated image URL
2025-02-27 14:19:32 +01:00

34 lines
929 B
YAML

name: Docker CI/CD
on:
push:
tags:
- "*"
jobs:
docker:
name: Docker Build and Push to git.private.coffee
container:
image: node:20-bookworm
steps:
- name: Install dependencies
run: |
apt update
apt install -y docker.io
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Forgejo
uses: docker/login-action@v3
with:
registry: git.private.coffee
username: ${{ secrets.FORGEJO_USER }}
password: ${{ secrets.FORGEJO_TOKEN }}
- name: Build and push to Forgejo
uses: docker/build-push-action@v5
with:
push: true
tags: |
git.private.coffee/privatecoffee/wikimore:latest
git.private.coffee/privatecoffee/wikimore:${{ env.GITHUB_REF_NAME }}