Skip to content

feat: envsubt image prepage #1

feat: envsubt image prepage

feat: envsubt image prepage #1

name: Build Docker image
on:
push:
branches:
- '**'
tags:
- 'v*'
paths:
- '.github/workflows/build.yml'
- 'utils/packages/envsubt/**'
env:
REGISTRY: ghcr.io
IMAGE_NAME: adorsys-gis/envsubt
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
name: Checkout repository
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the Docker registry
id: login
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: lowercase
name: Lowercase image name
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.lowercase.outputs.lowercase }}
tags: |
type=raw,value=latest
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
push: "${{ github.ref == 'refs/heads/main' && 'true' || 'false' }}"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64 #,linux/arm64,linux/arm/v7
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
# Save the updated Docker cache
- name: Save Docker cache
if: always()
uses: actions/upload-artifact@v4
with:
name: buildx-cache
path: /tmp/.buildx-cache-new