mirror of
https://git.private.coffee/PrivateCoffee/wikimore.git
synced 2025-04-03 21:17:35 +03:00
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
34 lines
929 B
YAML
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 }}
|