112 lines
3.4 KiB
YAML
112 lines
3.4 KiB
YAML
name: Container creation using Dockerfile
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
DOCKER_REG_DOMAIN:
|
|
description: Domain of the Gitea instance used as registry.
|
|
required: true
|
|
type: string
|
|
default: gitfub.space
|
|
DOCKER_ORG:
|
|
description: Gitea organization or user to use as registry.
|
|
required: true
|
|
type: string
|
|
DOCKER_LATEST:
|
|
required: false
|
|
type: string
|
|
default: latest
|
|
secrets:
|
|
DOCKER_USERNAME:
|
|
description: User to upload built container as.
|
|
required: true
|
|
type: string
|
|
DOCKER_PASSWORD:
|
|
description: Password (or auth token) to upload built container as.
|
|
required: true
|
|
type: string
|
|
PIPELINE_WORKER_SSH_KEY:
|
|
required: true
|
|
type: string
|
|
PIPELINE_WORKER_KNOWN_HOSTS:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
release-image:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
env:
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
steps:
|
|
- name: Check inputs
|
|
run: |
|
|
if [[ -z "${{ inputs.DOCKER_REG_DOMAIN }}" ]]; then
|
|
echo "Must provide: jobs.<id>.with.DOCKER_REG_DOMAIN"
|
|
exit 1
|
|
fi
|
|
if [[ -z "${{ inputs.DOCKER_ORG }}" ]]; then
|
|
echo "Must provide: jobs.<id>.with.DOCKER_ORG"
|
|
exit 1
|
|
fi
|
|
if [[ -z "${{ inputs.DOCKER_LATEST }}" ]]; then
|
|
echo "Must provide: jobs.<id>.with.DOCKER_LATEST"
|
|
exit 1
|
|
fi
|
|
|
|
- run: apt-get update
|
|
- name: Setting up SSH
|
|
if: ${{ hashFiles('requirements_private.txt') != '' }}
|
|
uses: https://github.com/shimataro/ssh-key-action@v2.5.1
|
|
with:
|
|
key: ${{ secrets.PIPELINE_WORKER_SSH_KEY }}
|
|
name: id_rsa
|
|
known_hosts: ${{ secrets.PIPELINE_WORKER_KNOWN_HOSTS }}
|
|
config: |
|
|
Host gitfub
|
|
HostName gitfub.space
|
|
User ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Download private dependencies
|
|
if: ${{ hashFiles('requirements_private.txt') != '' }}
|
|
run: |
|
|
mkdir -p private_deps
|
|
cd private_deps
|
|
cat ../requirements_private.txt | xargs -L 1 git clone
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker BuildX
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ inputs.DOCKER_REG_DOMAIN }}
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Get Meta
|
|
id: meta
|
|
run: |
|
|
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
|
echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64
|
|
push: true
|
|
tags: |
|
|
${{ inputs.DOCKER_REG_DOMAIN }}/${{ inputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}
|
|
${{ inputs.DOCKER_REG_DOMAIN }}/${{ inputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ inputs.DOCKER_LATEST }}
|