Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

build(docker): Update Minio server address #4

build(docker): Update Minio server address

build(docker): Update Minio server address #4

Workflow file for this run

name: Build Action
on:
push:
branches: [ main ]
paths:
- '.github/workflows/build.yml'
- '**[Dd]ocker*'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/build.yml'
- '**[Dd]ocker*'
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
PLATFORMS: linux/amd64
jobs:
containerize:
name: Build - Docker
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr.io
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta for runnable image
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
latest
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
platforms: ${{ env.PLATFORMS }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}