2021-06-13 12:44:59 +00:00
|
|
|
name: "CI for builds"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-01-12 21:21:09 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
2021-06-13 12:44:59 +00:00
|
|
|
|
|
|
|
env:
|
2023-01-12 21:21:09 +00:00
|
|
|
IMAGE_NAME: m1k1o/blog
|
2021-06-13 12:44:59 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
#
|
|
|
|
# do not run on forks
|
|
|
|
#
|
|
|
|
if: github.repository_owner == 'm1k1o'
|
|
|
|
steps:
|
2023-01-12 21:21:09 +00:00
|
|
|
-
|
|
|
|
name: Checkout
|
2021-06-13 12:44:59 +00:00
|
|
|
uses: actions/checkout@v2
|
2023-01-12 21:21:09 +00:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Available platforms
|
|
|
|
run: echo ${{ steps.buildx.outputs.platforms }}
|
|
|
|
-
|
|
|
|
name: Extract metadata (tags, labels) for Docker
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
id: meta
|
|
|
|
with:
|
|
|
|
images: ${{ env.IMAGE_NAME }}
|
|
|
|
tags: |
|
|
|
|
type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }}
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
-
|
|
|
|
name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
push: true
|