mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
|
name: Build
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 10 * * *"
|
||
|
push:
|
||
|
branches:
|
||
|
- "**"
|
||
|
tags:
|
||
|
- "v*.*.*"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- "main"
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Set up QEMU
|
||
|
uses: docker/setup-qemu-action@v3
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v3
|
||
|
|
||
|
- name: Login to GitHub Container Registry
|
||
|
if: github.event_name != 'pull_request'
|
||
|
uses: docker/login-action@v3
|
||
|
with:
|
||
|
registry: ghcr.io
|
||
|
username: ${{ github.repository_owner }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: Docker meta
|
||
|
id: meta
|
||
|
uses: docker/metadata-action@v5
|
||
|
with:
|
||
|
images: |
|
||
|
ghcr.io/mentos1386/zdravko
|
||
|
tags: |
|
||
|
type=schedule
|
||
|
type=ref,event=branch
|
||
|
type=ref,event=pr
|
||
|
type=semver,pattern={{version}}
|
||
|
type=semver,pattern={{major}}.{{minor}}
|
||
|
type=semver,pattern={{major}}
|
||
|
type=sha
|
||
|
|
||
|
- name: Build and push
|
||
|
uses: docker/build-push-action@v5
|
||
|
with:
|
||
|
context: .
|
||
|
push: ${{ github.event_name != 'pull_request' }}
|
||
|
platforms: linux/amd64,linux/arm64
|
||
|
tags: ${{ steps.meta.outputs.tags }}
|
||
|
labels: ${{ steps.meta.outputs.labels }}
|