Skip to content

Updated GitHub workflow #18

Updated GitHub workflow

Updated GitHub workflow #18

Workflow file for this run

name: Build
on:
push:
branches:
- 'master'
permissions:
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: containerMeta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/czm1k3/namaderucz
tags: |
type=raw,value=latest
type=sha,enable=true,priority=100,prefix=,suffix=,format=short
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.containerMeta.outputs.tags }}
labels: ${{ steps.containerMeta.outputs.labels }}