2024-09-26 09:29:33 +00:00
|
|
|
name: Create postgresql docker image
|
|
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- devel
|
|
|
|
paths:
|
|
|
|
- "Dockerfile"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Explore-Gitea-Actions:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2024-09-26 10:03:06 +00:00
|
|
|
REGISTRY: git.cooltux.net
|
2024-09-26 09:29:33 +00:00
|
|
|
IMAGE: db/pg_dump
|
2024-09-26 10:27:09 +00:00
|
|
|
DOCKER_ORG: ${{ secrets.DOCKER_USERNAME }}
|
2024-09-26 09:29:33 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker BuildX
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
with: # replace it with your local IP
|
|
|
|
config-inline: |
|
2024-09-26 10:03:06 +00:00
|
|
|
[registry."git.cooltux.net"]
|
|
|
|
http = false
|
|
|
|
insecure = false
|
2024-09-26 09:29:33 +00:00
|
|
|
|
2024-09-26 10:03:06 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }} # replace it with your local IP
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Get Meta
|
|
|
|
id: meta
|
2024-09-26 09:29:33 +00:00
|
|
|
run: |
|
2024-09-26 10:03:06 +00:00
|
|
|
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
2024-09-26 10:31:22 +00:00
|
|
|
# echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT
|
2024-09-26 10:03:06 +00:00
|
|
|
|
2024-09-26 10:19:18 +00:00
|
|
|
- name: Set Docker Version
|
|
|
|
id: get_version
|
|
|
|
run: |
|
|
|
|
DOCKER_VERSION=$(grep -oP '(?<=^ARG VERSION=).*' Dockerfile)
|
|
|
|
echo "Docker version: $DOCKER_VERSION"
|
|
|
|
echo "::set-output name=tag::$DOCKER_VERSION"
|
2024-09-26 09:29:33 +00:00
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
platforms: |
|
|
|
|
linux/amd64
|
2024-09-26 10:24:43 +00:00
|
|
|
push: true
|
2024-09-26 10:03:06 +00:00
|
|
|
tags: |
|
2024-09-26 10:29:13 +00:00
|
|
|
${{ env.REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.get_version.outputs.tag }}
|