CI: try building and pushing container image
Build and Push Docker Image / build-and-push (push) Failing after 17s
Details
Build and Push Docker Image / build-and-push (push) Failing after 17s
Details
This commit is contained in:
parent
6199c82342
commit
b86c108082
|
@ -1,16 +1,39 @@
|
||||||
name: Rebuild Gitea container
|
name: Build and Push Docker Image
|
||||||
run-name: ${{ gitea.actor }} is testing actions
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build container image:
|
build-and-push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- run: echo "Trigged by ${{ gitea.event_name }}"
|
- name: Checkout Repository
|
||||||
- run: echo "Name of branch is ${{ gitea.ref }} and repository ${{ gitea.repository }}"
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: List all files
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Build and Push Docker Image
|
||||||
run: |
|
run: |
|
||||||
ls ${{ gitea.workspace }}
|
# Set your Docker registry and image name
|
||||||
- run: echo "Status is ${{ job.status }}"
|
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}}
|
||||||
|
|
Reference in New Issue