This repository has been archived on 2024-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
gitea/.gitea/workflows/rebuild.yml

40 lines
1.2 KiB
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and Push Docker Image
run: |
# Set your Docker registry and image name
REGISTRY_NAME="git.kucharczyk.xyz/${DOCKER_USERNAME}/containers/gitea"
# Optionally, set a tag for your image (e.g., a commit SHA)
#TAG="${{ gitea.sha }}"
TAG="latest"
# Build the Docker image
docker buildx create --use
docker buildx build --file Dockerfile -t "${REGISTRY_NAME}:${TAG}" .
# Log in to the container registry (replace with your authentication method)
docker login -u "${{ gitea.repository_owner }}" -p "$DOCKER_PASSWORD" your-registry-url.com
# Push the image to the container registry
docker push "${REGISTRY_NAME}:${TAG}"
env:
DOCKER_USERNAME: ${{ gitea.repository_owner }}
DOCKER_PASSWORD: ${{ secrets.GITEA_TOKEN}}